-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
48 lines (48 loc) · 1.35 KB
/
composer.json
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
45
46
47
48
{
"name": "megachriz/afasprofit",
"description": "An API to connect to Afas Profit written in PHP.",
"keywords": ["afas", "profit"],
"license": "GPL-3.0",
"type": "library",
"authors": [
{
"name": "Youri van Koppen",
"email": "[email protected]"
}
],
"repositories": {
"classtools" : {
"type": "vcs",
"url": "https://github.com/Ing-LuisGuerrero/classtools.git"
}
},
"require": {
"php": ">=7.3",
"symfony/dependency-injection": ">=4.4 <7.0.0",
"openlss/lib-array2xml": "~0.0",
"drupal/core-plugin": "^9.0|^10.0|^11.0",
"symfony/finder": ">=4.4 <8.0.0",
"hanneskod/classtools": "dev-master as 1.2.x-dev"
},
"require-dev": {
"phpunit/phpunit": "~8.5",
"kzykhys/php-csv-parser": "~1.4",
"symfony/event-dispatcher": ">=4.4 <7.0.0"
},
"suggest": {
"symfony/event-dispatcher": "To react on Profit calls.",
"kzykhys/php-csv-parser": "To use the getListFromCsv() method from the service 'afas.country.manager'."
},
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Afas\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Afas\\Tests\\": "tests/src/"
}
}
}