-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.6 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
49
50
51
{
"name": "instacar/autometrica-webservice-client",
"type": "library",
"description": "A Webservice Client to talk with the Autometrica Webservice",
"keywords": [
"guía autométrica", "autométrica"
],
"license": "LGPL-3.0-only",
"authors": [
{"name": "Brandon Antonio Lorenzo", "email": "[email protected]"}
],
"require": {
"php": ">=7.4",
"doctrine/annotations": "^1.13",
"doctrine/collections": "^1.6.8",
"psr/http-client": "^1.0.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"symfony/property-access": "^4.4|^5.4|^6.0",
"symfony/property-info": "^4.4|^5.4|^6.0",
"symfony/serializer": "^4.4|^5.4|^6.0"
},
"require-dev": {
"nyholm/psr7": "^1.5",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6",
"symfony/http-client": "^4.4|^5.4|^6.0"
},
"autoload": {
"psr-4": {
"Instacar\\AutometricaWebserviceClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Instacar\\AutometricaWebserviceClient\\Test\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs -q -n --no-colors",
"analyze": "vendor/bin/phpstan analyse -q -n --no-ansi",
"test:all": "vendor/bin/phpunit",
"test:integration": "vendor/bin/phpunit --group integration",
"test:unit": "vendor/bin/phpunit --group unit"
},
"config": {
"sort-packages": true
}
}