-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 963 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
35
36
37
{
"name": "aurora-framework/aurora",
"description": "Simple and hackable framework",
"license": "MIT",
"authors": [
{
"name": "VeeeneX",
"email": "[email protected]",
"role": "Creator / Main Developer"
}
],
"require": {
"php": ">=5.6",
"aurora-framework/router": "~1.0",
"aurora-framework/session": "~1.0",
"aurora-framework/config": "~1.0",
"aurora-framework/service": "~1.0",
"aurora-framework/http": "~1.0",
"aurora-framework/il8n": "~1.0",
"aurora-framework/filesystem": "~1.0",
"aurora-framework/di": "~1.0"
},
"require-dev": {
"php": ">=5.6",
"aurora-framework/router": "dev-master",
"aurora-framework/session": "dev-master",
"aurora-framework/config": "dev-master",
"aurora-framework/service": "dev-master",
"aurora-framework/http": "dev-master",
"aurora-framework/di": "dev-master"
},
"autoload": {
"psr-4": {
"Aurora\\": "src//"
}
}
}