-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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": "ubereats/php-sdk",
"description": "PHP SDK for UberEats API",
"type": "library",
"require": {
"php": "^7.4 || ^8.0",
"guzzlehttp/guzzle": "^7.4",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/serializer": "^5.4 || ^6.0|| ^7.0",
"symfony/property-access": "^5.4 || ^6.0|| ^7.0",
"symfony/validator": "^5.4 || ^6.0|| ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.14",
"symfony/var-dumper": "^5.4 || ^6.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"UberEats\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UberEats\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "BEN MECHA Ali",
"email": "contact@benmacha.tn"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "phpunit --coverage-clover coverage.xml",
"phpstan": "phpstan analyse src tests --level=max",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix",
"test-coverage": "phpunit --coverage-html coverage",
"check": [
"@test",
"@phpstan",
"@cs-fix"
]
}
}