-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·43 lines (43 loc) · 882 Bytes
/
composer.json
File metadata and controls
executable file
·43 lines (43 loc) · 882 Bytes
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
{
"name": "ozone-framework/ozone",
"description": "The modular MVC framework",
"keywords": [
"framework",
"modules",
"Ozone php Framework",
"slim 3.0"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Ozone Framework",
"email": "ozoneframework@gmail.com"
}
],
"require": {
"gedmo/doctrine-extensions": "^2.4",
"monolog/monolog": "^1.23",
"ozone-core/framework": "5.1.*"
},
"require-dev": {
"dopesong/slim-whoops": "^2.2",
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Core\\": "config/Core/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"prefer-stable": true
}