-
Notifications
You must be signed in to change notification settings - Fork 727
/
composer.json
87 lines (87 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "gitscrum-community-edition/laravel-gitscrum",
"description": "GitScrum is a project to help developer team. Git + Scrum = Team More Productive ",
"keywords": [
"git",
"scrum",
"team",
"developer",
"tasks",
"backlog",
"issue",
"laravel",
"gitscrum",
"gitscrum community edition"
],
"license": "MIT",
"type": "application",
"authors": [
{
"name": "Renato Marinho",
"email": "renato.marinho@gitscrum.com",
"homepage": "https://gitscrum.com"
}
],
"require": {
"php": ">=7.1",
"laravel/framework": "5.5.*",
"maknz/slack": "^1.7",
"nesbot/carbon": "^1.21",
"phploc/phploc": "*",
"renatomarinho/laravel-multi-language": ">=1.0.0",
"renatomarinho/laravel-page-speed": "^1.8",
"socialiteproviders/gitlab": "^3.0",
"tymon/jwt-auth": "0.5.*",
"spatie/laravel-fractal": "^5.2",
"doctrine/dbal": "^2.6"
},
"require-dev": {
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.2",
"squizlabs/php_codesniffer": "^2.7",
"symfony/css-selector": "~2.8|~3.0",
"symfony/dom-crawler": "3.2.3"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"GitScrum\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 app tests"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}