-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.46 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "car-api-team/carapi-php-sdk",
"description": "SDK for CarAPI. The developer friendly vehicle API.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "carapi.app"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"php-http/discovery": "^1.19",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"ext-zlib": "*",
"ext-curl": "*",
"josegonzalez/dotenv": "^4.0",
"phpunit/phpunit": "^9.0",
"php-http/mock-client": "^1.6",
"symfony/http-client": "^5.0",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.10",
"phpmd/phpmd": "^2.14",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"CarApiSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"analyze": [
"@test",
"@phpcs",
"@phpstan",
"@phpmd"
],
"phpcs": "phpcs --colors -p --standard=phpcs.xml src/",
"phpcbf": "phpcbf --colors src/",
"phpstan": "phpstan analyse src/",
"test": "phpunit --colors=always",
"phpmd": "phpmd src/ ansi phpmd.xml"
}
}