-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "astock/stock-api-libphp",
"description": "Adobe Stock API library",
"license": "Apache-2.0",
"repositories": [
{
"type": "vcs",
"url": "./libs/phpcs-psr2-stock"
}
],
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "~7.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.6.0",
"phpunit/phpunit": ">=6.0",
"mockery/mockery": "^1.4.3"
},
"autoload": {
"psr-4": {
"AdobeStock\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AdobeStock\\Api\\Test\\": "test"
}
},
"config": {
"bin-dir": "vendor/bin/"
},
"scripts": {
"check": [
"@test",
"@lint"
],
"lint": "vendor/bin/phpcs --standard='libs/phpcs-psr2-stock/PSR2Stock' src test",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html data/clover"
}
}