generated from mnapoli/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
45 lines (45 loc) · 1.16 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
{
"name": "bref/dev-server",
"description": "Local development server for serverless web apps",
"keywords": ["bref"],
"license": "MIT",
"type": "library",
"bin": [
"bin/bref-dev-server"
],
"autoload": {
"psr-4": {
"Bref\\DevServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bref\\DevServer\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"bref/bref": "^1.0 || ^2.0",
"filp/whoops": "^2.5",
"mnapoli/silly": "^1.5",
"nyholm/psr7": "^1.0",
"nyholm/psr7-server": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"symfony/console": "^4.0|^5.0|^6.0",
"symfony/process": "^4.0|^5.0|^6.0",
"symfony/yaml": "^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mnapoli/hard-mode": "^0.3.0",
"vimeo/psalm": "^4.3"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}