forked from letsdrink/ouzo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 974 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "letsdrink/ouzo",
"description": "Ouzo PHP MVC framework",
"homepage": "http://ouzoframework.org/",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"php",
"mvc",
"framework",
"orm",
"tdd"
],
"authors": [
{
"name": "Ouzo developers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ouzo\\": [
"src/Ouzo/Core",
"src/Ouzo/Goodies"
],
"Command\\": "bin/"
}
},
"autoload-dev": {
"classmap": ["test/"]
},
"require": {
"d11wtq/boris": "1.0.8",
"symfony/console": "2.5.7"
},
"require-dev": {
"phpunit/phpunit": "4.3.3",
"satooshi/php-coveralls": "dev-master"
},
"replace": {
"letsdrink/ouzo-goodies": "self.version"
},
"archive": {
"exclude": [
"/test",
"/build",
"/config",
"/vendor",
"/*.xml",
"/*.sh",
"/bootstrap_test.php"
]
}
}