-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.49 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.49 KB
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
{
"name": "bytic/http",
"type": "library",
"description": "Php Framework",
"homepage": "https://github.com/bytic/http",
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"Nip\\Http\\": "src"
},
"classmap": [
"src",
"legacy"
],
"files": [
"src/functions/common.php"
]
},
"autoload-dev": {
"psr-4": {
"Nip\\Http\\Tests\\": "tests/src",
"Nip\\Http\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^8.0",
"bytic/utility": "^1.0",
"bytic/request-detective": "^1.0",
"bytic/logger": "^1.0|^2.0",
"symfony/http-foundation": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"oscarotero/middleland": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0|^2.0",
"nyholm/psr7": "^1.3"
},
"require-dev": {
"ext-json": "*",
"bytic/application": "^1.0|^2.0",
"bytic/debug": "^1.0|^2.0",
"bytic/router": "^1.0|^2.0",
"bytic/container": "^1.0|^2.0",
"bytic/config": "^1.0|^2.0",
"bytic/phpqatools": "^1.0",
"mockery/mockery": "^1.0",
"filp/whoops": "^2.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bytic/phpqatools": true
}
}
}