-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 858 Bytes
/
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
{
"name": "skyline/core-application",
"description": "Required package to create any kind of Skyline Applications. It will add all necessary packages to launch the application for any purpose like web application or php server.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Thomas Abplanalp",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Skyline\\Application\\" : "src"
},
"files": [
"src/Constants.php"
]
},
"require" : {
"php": "^8",
"tasoft/event-manager": "^1.0",
"tasoft/service-manager": "^2.2",
"skyline/kernel": "^8",
"skyline/router": "^8",
"skyline/render": "^8",
"symfony/http-foundation": "^6"
},
"require-dev": {
"phpunit/phpunit": "^9",
"skyline/compiler": "^8",
"skyline/binary": "^8",
"skyline/api": "^8"
}
}