-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.19 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": "bermudaphp/skeleton",
"description": "Bermuda app skeleton. PHP psr micro-framework",
"keywords": [
"skeleton",
"middleware",
"psr",
"bermuda",
"pipeline",
"psr-7",
"psr-11",
"psr-15",
"php-micro-framework",
"php-framework",
"framework"
],
"type": "project",
"license": "MIT",
"require": {
"php": "^8.3",
"elie29/zend-phpdi-config": "^9.0.1",
"laminas/laminas-config-aggregator": "^1.15",
"bermudaphp/app": "^2.0",
"bermudaphp/stringy": "^1.0",
"bermudaphp/config": "^1.3",
"bermudaphp/http": "^1.0.1",
"webimpress/safe-writer": "^2.2.0"
},
"require-dev": {
"symfony/var-dumper": "^5.1",
"laminas/laminas-code": "^4.3",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Console\\": "bin/",
"": "src/"
},
"files": [
"src/functions.php",
".autocomplete.php"
]
},
"scripts": {
"post-root-package-install": "Installer::install",
"serve": "php -S localhost:8000 -t public/"
}
}