-
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.07 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.07 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": "zapheus/skeleton",
"description": "An application structure for Zapheus framework.",
"keywords": ["application", "skeleton", "structure", "zapheus"],
"homepage": "https://zapheus.github.io/skeleton/",
"license": "MIT",
"authors":
[
{
"email": "rougingutib@gmail.com",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.3.0",
"vlucas/phpdotenv": "~2.0",
"zapheus/zapheus": "~0.1"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7",
"scrutinizer/ocular": "~1.1.0",
"zapheus/slytherin-bridge": "~0.1"
},
"autoload":
{
"psr-4":
{
"App\\": "src"
}
},
"autoload-dev":
{
"psr-4":
{
"App\\": "tests"
}
},
"scripts":
{
"post-root-package-install":
[
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}