-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 997 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
{
"name": "jabranr/lassi",
"description": "PHP boilerplate for quick projects based on Slim and Eloquent",
"version": "0.0.5",
"license": "MIT License",
"require": {
"php": ">=5.5.9",
"slim/slim": "^2.6",
"illuminate/database": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "2.*",
"codeception/codeception": "*"
},
"authors": [
{
"name": "Jabran Rafique",
"email": "hello@jabran.me",
"homepage": "http://jabran.me"
}
],
"autoload": {
"psr-4": {
"Lassi\\": "Lassi/"
}
},
"autoload-dev": {
"psr-4": {
"Lassi\\Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.sample.env', '.dev.env');\""
]
},
"ignore": [
"vendor",
"test",
"*.lock"
]
}