-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.59 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
52
53
{
"name": "easy-http/symfony-layer",
"description": "Http layer for Symfony Client",
"type": "library",
"license": "MIT",
"keywords": [
"PHP",
"HTTP Client"
],
"homepage": "https://easy-http.com",
"support": {
"issues": "https://github.com/easy-http/symfony-layer/issues",
"source": "https://github.com/easy-http/symfony-layer"
},
"authors": [
{
"name": "Darío Rivera",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"symfony/http-client": "^5.1",
"easy-http/layer-contracts": "^1.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"tests": "phpunit --stop-on-error --stop-on-failure --stop-on-risky --colors=always",
"tests-check": "@tests --testdox",
"tests-xml": "phpunit --stop-on-error --stop-on-failure --coverage-clover phpunit.coverage.xml",
"phpcs-check": "phpcs --colors -s",
"phpcs-fix": "phpcbf --colors -s",
"phpcs-auto-check": "@phpcs-check --standard=.phpcs.xml",
"phpcs-auto-fix": "@phpcs-fix --standard=.phpcs.xml",
"phpcs-auto-check-project": "phpcs --report=summary -p",
"phpcs-auto-fix-project": "phpcbf --report=summary -p"
},
"autoload": {
"psr-4": {
"EasyHttp\\SymfonyLayer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}