-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 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
78
{
"name": "coisa/http",
"description": "PSR Http utility tools",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Felipe Sayão Lobato Abreu",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"prefer-stable" : true,
"optimize-autoloader": true
},
"scripts": {
"post-install-cmd": [
"@create-githooks-link"
],
"create-githooks-link": [
"rm -rf .git/hooks",
"ln -sfT ../.git-hooks ./.git/hooks"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
},
"require": {
"php": "~7.2",
"fig/http-message-util": "^1.1",
"psr/event-dispatcher": "^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",
"psr/log": "^1.1",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"guzzlehttp/guzzle": "^6.3",
"infection/infection": "^0.12.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"league/plates": "^3.3",
"middlewares/access-log": "^1.1",
"middlewares/client-ip": "^1.1",
"monolog/monolog": "^1.24",
"nikic/php-parser": "^4.2",
"phan/phan": "^1.2",
"phly/phly-event-dispatcher": "^1.0",
"php-http/curl-client": "^1.7",
"phpro/grumphp": "^0.15.0",
"phpunit/phpunit": "^8.0",
"sensiolabs/security-checker": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"provide": {
"psr/http-client-implementation": "^1.0",
"psr/http-server-handler-implementation": "^1.0",
"psr/http-server-middleware-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"CoiSA\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CoiSA\\Http\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}