-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.37 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "instacar/intelimotor-api-client",
"type": "library",
"description": "An API Client to talk with the Intelimotor API",
"keywords": [
"intelimotor"
],
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Brandon Antonio Lorenzo",
"email": "bantonio@gtglobal.com"
}
],
"require": {
"php": ">=8.1",
"doctrine/collections": "^1.6|^2.0",
"psr/http-client": "^1.0.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"symfony/property-access": "^5.4|^6.1",
"symfony/serializer": "^5.4|^6.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.12",
"nyholm/psr7": "^1.5",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/http-client": "^5.4|^6.1"
},
"autoload": {
"psr-4": {
"Instacar\\IntelimotorApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Instacar\\IntelimotorApiClient\\Test\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer -n --no-ansi fix --dry-run",
"analyze": "vendor/bin/phpstan analyse -n --no-ansi"
},
"config": {
"sort-packages": true
}
}