-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "emartech/php-suite-api",
"description": "Simple client library for emarsys suite API",
"type": "library",
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Suite\\Api\\Test\\Helper\\": "test/helper/"
}
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.0",
"emartech/escher": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"silex/silex": "~2.0",
"fqqdk/packagist-publisher": ">=1.2.5"
},
"authors": [
{
"name": "fqqdk",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit -c test/phpunit.xml",
"unit": "phpunit -c test/phpunit.xml --testsuite unit",
"acceptance": "phpunit -c test/phpunit.xml --testsuite acceptance"
},
"license": [
"MIT"
],
"config": {
"allow-plugins": {
"fqqdk/packagist-publisher": true
}
}
}