-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
94 lines (94 loc) · 2.97 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
88
89
90
91
92
93
94
{
"name": "wiliamhw/laravel-9-ci-pipeline",
"type": "project",
"description": "The Laravel 9 CI pipeline",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.0.2",
"doctrine/dbal": "^3.3",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.2",
"laravel/sanctum": "^2.14.1",
"laravel/telescope": "^4.7",
"laravel/tinker": "^2.7",
"predis/predis": "^1.1",
"sentry/sentry-laravel": "^2.11"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.12",
"brianium/paratest": "^6.4",
"ekino/phpstan-banned-code": "^1.0",
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.0",
"phpmd/phpmd": "^2.11",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.5.10",
"sebastian/phpcpd": "^6.0",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"analyse": [
"composer phpstan-analysis",
"composer phpmd-analysis",
"composer phpcpd-analysis"
],
"phpstan-analysis": [
"@php vendor/bin/phpstan analyse -c phpstan.neon --no-progress --memory-limit=-1"
],
"phpmd-analysis": [
"@php vendor/bin/phpmd app/ text codesize,controversial,design,naming,unusedcode,.phpmd.cleancode.xml",
"@php vendor/bin/phpmd config/ text codesize,controversial,design,naming,unusedcode,.phpmd.cleancode.xml",
"@php vendor/bin/phpmd database/ text codesize,controversial,design,unusedcode,.phpmd.cleancode.xml"
],
"phpcpd-analysis": [
"@php vendor/bin/phpcpd --min-lines=4 --min-tokens=36 app/"
],
"test": [
"@php artisan test --parallel"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}