-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
64 lines (64 loc) · 1.74 KB
/
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
55
56
57
58
59
60
61
62
63
64
{
"name": "flipboxstudio/php-flip",
"description": "Clean architecture from Flipbox.",
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1",
"laravel/lumen-framework": "^5.4",
"illuminate/validation": "^5.4",
"illuminate/support": "^5.4",
"illuminate/container": "^5.4",
"illuminate/config": "^5.4",
"illuminate/translation": "^5.4",
"illuminate/filesystem": "^5.4",
"vlucas/phpdotenv": "~2.2",
"sabre/event": "^5.0",
"spatie/array-to-xml": "^2.5",
"flipbox/lumen-generator": "^5.4",
"phpmailer/phpmailer": "^5.2"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Core\\": "core/src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/"
},
"classmap": [
"database/"
]
},
"scripts": {
"fix": [
"php-cs-fixer fix --rules=@Symfony app",
"php-cs-fixer fix --rules=@Symfony core",
"php-cs-fixer fix --rules=@Symfony test"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"test": [
"php artisan migrate:refresh --seed",
"phpunit"
],
"test-app": [
"php artisan migrate:refresh --seed",
"phpunit --testsuite 'App'"
],
"test-core": [
"php artisan migrate:refresh --seed",
"phpunit --testsuite 'Core'"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}