-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 loc) · 1.31 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
{
"name": "mnavarrocarter/php-fetch",
"description": "A simple, type-safe, zero dependency port of the javascript fetch WebApi for PHP",
"minimum-stability": "stable",
"license": "MIT",
"keywords": ["php", "php7", "http", "http-client", "streams", "fetch", "web-api", "request", "response"],
"authors": [
{
"name": "Matias Navarro Carter",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MNC\\Http\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"MNC\\Http\\": "tests"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"castor/io": "^0.2.1"
},
"scripts": {
"lint": "php-cs-fixer fix",
"pr": [
"php-cs-fixer fix --dry-run -vvv",
"psalm --no-cache --stats",
"phpunit --testdox --coverage-text"
]
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"symfony/var-dumper": "^5.1",
"vimeo/psalm": "^4.1",
"amphp/http-server": "^2.1",
"amphp/http-server-static-content": "^1.0.6",
"mnavarrocarter/amp-http-router": "^0.1.0",
"friendsofphp/php-cs-fixer": "dev-master"
}
}