forked from bluzphp/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.21 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "bluzphp/skeleton",
"description": "Skeleton for Bluz, a lightweight PHP framework",
"minimum-stability": "dev",
"type": "library",
"require": {
"php": ">=5.4",
"bluzphp/framework": "0.3.4",
"phpmailer/phpmailer": "dev-master",
"guzzle/guzzle": "~3.7"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"squizlabs/php_codesniffer": "1.*"
},
"config": {
"vendor-dir": "vendor"
},
"autoload": {
"psr-0": {
"": "application/library"
},
"psr-4": {
"Application\\": "application/models",
"Application\\Tests\\": "tests"
}
},
"scripts": {
"post-install-cmd": "php bin/install.php"
},
"authors": [
{
"name": "Anton Shevchuk",
"email": "AntonShevchuk@gmail.com"
},
{
"name": "Eugene Zabolotniy",
"email": "realbaziak@gmail.com"
},
{
"name": "Maks Slesarenko"
}
],
"support": {
"issues": "https://github.com/bluzphp/skeleton/issues",
"wiki": "https://github.com/bluzphp/skeleton/wiki"
},
"license": "MIT"
}