-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
131 lines (131 loc) · 4.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.2",
"laracasts/utilities": "^3.2",
"laravel-doctrine/migrations": "^3.0",
"laravel-doctrine/orm": "^1.8",
"laravel/framework": "^9.51",
"laravel/tinker": "^2.7",
"laravel/ui": "^3.3",
"league/csv": "^9.7",
"league/event": "^2.1",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0",
"league/tactician-doctrine": "^1.1",
"league/tactician-logger": "^0.10.0",
"mariuzzo/laravel-js-localization": "^1.9",
"myclabs/php-enum": "^1.5",
"paquettg/php-html-parser": "^1.7",
"php-coveralls/php-coveralls": "^2.5",
"phpoffice/phpspreadsheet": "^1.19",
"skagarwal/google-places-api": "^2.0",
"symfony/http-client": "^6.2",
"symfony/mailgun-mailer": "^6.2",
"toin0u/geocoder-laravel": "^4.5"
},
"require-dev": {
"laravel/dusk": "^6.21",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.3",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5.10",
"squizlabs/php_codesniffer": "^3.6",
"fakerphp/faker": "^1.9.1",
"spatie/laravel-ignition": "^1.4"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"TheRestartProject\\RepairDirectory\\": "src/",
"TheRestartProject\\Fixometer\\": "fixometer/src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"TheRestartProject\\RepairDirectory\\Tests\\": "tests/",
"TheRestartProject\\Fixometer\\Tests\\": "fixometer/tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"fixometer:config": [
"cp fixometer/config/config.dist.php fixometer/config/config.php"
],
"key:generate": [
"php artisan key:generate"
],
"code": [
"@sniff",
"@mess",
"@copypaste",
"@stan"
],
"test:all": [
"php artisan config:clear",
"php bin/phpunit"
],
"test:unit": [
"php artisan config:clear",
"php bin/phpunit --testsuite=Unit"
],
"test:integration": [
"php artisan config:clear",
"php bin/phpunit --testsuite=Integration"
],
"test:feature": [
"php artisan config:clear",
"php bin/phpunit --testsuite=Feature"
],
"sniff": [
"php bin/phpcs --config-set ignore_errors_on_exit 1",
"php bin/phpcs -s --standard=phpcs.xml --extensions=php src tests"
],
"mess": [
"php bin/phpmd src/ text phpmd.xml",
"php bin/phpmd tests/ text codesize,design,naming,unusedcode"
],
"copypaste": "php bin/phpcpd src app tests",
"stan": "php bin/phpstan analyse src tests --level=7 -c phpstan.neon",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"bin-dir": "vendor/bin",
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
}
}