-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.1 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
{
"name": "minibase-app/net",
"description": "A small and modern PSR-7 & PSR-18 implementation",
"license": "MIT",
"authors": [
{
"name": "Jordan Brauer",
"email": "18744334+jordanbrauer@users.noreply.github.com"
}
],
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.23.0",
"laminas/laminas-diactoros": "^2.6",
"marcocesarato/php-conventional-changelog": "^1.10",
"nunomaduro/patrol": "^1.0",
"nunomaduro/phpinsights": "^2.0",
"pestphp/pest": "^1.10",
"phpbench/phpbench": "^1.0",
"phpunit/phpunit": "^9.5",
"react/react": "^1.2",
"symfony/var-dumper": "^5.3"
},
"autoload": {
"psr-4": {
"Minibase\\Net\\": "src/"
}
},
"minimum-stability": "stable"
}