-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.04 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
{
"name": "laravel/lumen",
"description": "The Laravel Lumen Framework.",
"keywords": [
"framework",
"laravel",
"lumen"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.2.5",
"doctrine/dbal": "^2.12",
"flipbox/lumen-generator": "^8.2",
"guzzlehttp/guzzle": "^7.4",
"illuminate/bus": "^7.30.1",
"illuminate/http": "^7.30.1",
"illuminate/mail": "^7.30.1",
"illuminate/queue": "^7.30.1",
"illuminate/support": "^7.30.1",
"laravel-lang/lang": "~7.0",
"laravel/lumen-framework": "^7.0",
"maatwebsite/excel": "^3.1",
"mpociot/laravel-apidoc-generator": "^4.8",
"tymon/jwt-auth": "^1.0",
"zircote/swagger-php": "3.*"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.8",
"darkaonline/swagger-lume": "8.*",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": [
"vendor/bin/phpunit"
],
"fix": [
"tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
],
"cghooks": "vendor/bin/cghooks"
},
"extra": {
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"composer run fix"
],
"pre-push": [
"composer run test"
]
}
}
}