-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1021 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": "startup-palace/laravel-maki",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Killian Blais",
"email": "killian.blais@startup-palace.com"
},
{
"name": "Maxime Pauvert",
"email": "maxime.pauvert@startup-palace.com"
}
],
"require": {
"php": "^7.0",
"illuminate/database": "^5.4",
"kblais/laravel-uuid": "^0.1.0",
"rcrowe/twigbridge": "^0.9.4"
},
"require-dev": {
"orchestra/testbench": "^3.4",
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^6.1",
"orchestra/database": "^3.4"
},
"scripts": {
"test": [
"./vendor/bin/phpunit",
"./vendor/bin/phpcs"
]
},
"autoload": {
"psr-4": {
"StartupPalace\\Maki\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StartupPalace\\Maki\\Tests\\": "tests"
}
}
}