-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "coisa/proxy",
"type": "library",
"description": "PSR HTTP Proxy Server Handlers",
"license": "MIT",
"authors": [
{
"name": "Felipe Sayão Lobato Abreu",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"coisa/container": "1.x-dev",
"coisa/service-provider": "^1.0",
"psr/container": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"provide": {
"psr/container-implementation": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-server-handler-implementation": "^1.0",
"psr/http-server-middleware-implementation": "^1.0"
},
"require-dev": {
"coisa/php-cs-fixer": "^1.0",
"container-interop/service-provider": "^0.4.0",
"infection/infection": "^0.13.6",
"laminas/laminas-diactoros": "^2.4",
"laminas/laminas-servicemanager": "^3.4",
"php-http/curl-client": "^2.1",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^7.5",
"sensiolabs/security-checker": "^6.0",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"prefer-stable": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laminas": {
"config-provider": "CoiSA\\Proxy\\Container\\ConfigProvider\\ProxyConfigProvider"
}
},
"autoload": {
"psr-4": {
"CoiSA\\Proxy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoiSA\\Proxy\\Test\\": "tests/"
}
},
"scripts": {
"check": [
"@lint",
"@test",
"@sniff",
"@cs-check"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"lint": "parallel-lint --exclude vendor .",
"sniff": "phpcs",
"test": "phpunit --color=always"
}
}