-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.05 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
{
"name": "akai-z/custom-component-based-app",
"description": "A custom component-based PHP application",
"type": "project",
"license": "GPL-2.0",
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"fig/http-message-util": "^1.1",
"laminas/laminas-diactoros": "^2.5",
"laminas/laminas-httphandlerrunner": "^1.3",
"nikic/fast-route": "^1.3",
"php-di/php-di": "^6.3",
"psr/container": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"symfony/console": "^5.2",
"symfony/yaml": "^5.2"
},
"autoload": {
"psr-4": {
"CustomComponentApp\\App\\": "src/app/",
"CustomComponentApp\\Framework\\": "src/framework/"
}
},
"scripts": {
"server-start": "php -S localhost:3000 -t web/"
},
"authors": [
{
"name": "Ammar K.",
"homepage": "https://github.com/akai-z"
}
]
}