-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
30 lines (30 loc) · 894 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
{
"name": "andrey900/flight-skeleton",
"description": "Simple Flight Framework skeleton application with Twig & Monolog & Eloquent ORM",
"keywords": ["flight", "mvc", "fast", "php-5.3", "skeleton", "psr-4"],
"homepage": "https://github.com/andrey900/flight-skeleton",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrey Leo",
"email": "[email protected]",
"homepage": "https://github.com/andrey900",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.3.0",
"mikecao/flight": "^1.2",
"monolog/monolog": "1.21.0",
"illuminate/database": "v4.1.30",
"twig/twig": "1.24"
},
"autoload": {
"psr-4": {
"App\\": "src/App",
"Models\\": "src/Models",
"Controllers\\": "src/Controllers"
}
}
}