-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.01 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "daalder/exact",
"description": "Exact integration for Daalder",
"license": "MIT",
"authors": [
{
"name": "Egbert Wietses",
"email": "info@pionect.nl"
},
{
"name": "Vincent van Hoven"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/pionect/"
}
],
"require": {
"picqer/exact-php-client": "^v3.43.0"
},
"require-dev": {
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.3",
"pionect/daalder": "^21|^20|dev-acceptance"
},
"autoload": {
"classmap": ["database"],
"psr-4": {
"Daalder\\Exact\\": "src/",
"Daalder\\Exact\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Daalder\\Exact\\ExactServiceProvider"
]
}
}
}