-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 890 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 890 Bytes
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
{
"name": "graviton/php-proxy",
"description": "A very simple guzzle based php-proxy using PSR interfaces.",
"type": "library",
"keywords": ["proxy"],
"license": "MIT",
"authors": [
{
"name": "List of contributors",
"homepage": "https://github.com/libgraviton/php-proxy/graphs/contributors"
}
],
"require": {
"psr/http-message": "^1.0",
"guzzlehttp/guzzle": "~6|~7",
"laminas/laminas-diactoros": "~2"
},
"require-dev": {
"phpunit/phpunit": "^5.7.0",
"squizlabs/php_codesniffer": "~3",
"libgraviton/codesniffer": "~2"
},
"scripts": {
"check": [
"./vendor/bin/phpcs -p --standard=PSR1 src/",
"./vendor/bin/phpcs -p --standard=PSR2 src/",
"./vendor/bin/phpcs -p --standard=./vendor/libgraviton/codesniffer src/"
]
},
"autoload": {
"psr-4": {
"Graviton\\PhpProxy\\": "src/"
}
}
}