-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.1 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
39
40
41
42
43
44
45
46
47
{
"config": {
"platform": {
"php": "5.6.0"
}
},
"name": "letsdrink/ouzo-app",
"description": "Ouzo framework application skeleton",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Ouzo developers",
"email": "[email protected]"
}
],
"require": {
"letsdrink/ouzo": "dev-master",
"phpunit/phpunit": "5.7.*",
"ruckusing/ruckusing-migrations": "1.0.3"
},
"require-dev": {
"composer/composer": "dev-master"
},
"autoload": {
"psr-4": {
"Application\\": "Application/",
"Installer\\": "bin/Installer/"
},
"classmap": [
"locales/"
]
},
"autoload-dev": {
"classmap": [
"test/",
"seed/"
]
},
"scripts": {
"post-create-project-cmd": [
"Installer\\PostCreateProject::setConfig",
"Installer\\PostCreateProject::changePrefix",
"Installer\\PostCreateProject::changeDbName"
]
}
}