-
Notifications
You must be signed in to change notification settings - Fork 136
/
composer.json
91 lines (91 loc) · 2.45 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"acidjazz/humble": "^3.0",
"acidjazz/metapi": "^2.1",
"composer/composer": "^2.2.1",
"google/apiclient": "^2.11",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^11.0",
"laravel/socialite": "^5.6",
"laravel/tinker": "^2.5"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.9.1",
"fumeapp/modeltyper": "^2.2",
"larastan/larastan": "^2.1",
"laravel/pint": "^1.0.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-ray": "^1.29",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/php/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": [
"vendor/bin/phpunit -c tests/php/phpunit.xml --colors=always --testdox"
],
"test:coverage": [
"XDEBUG_MODE=coverage vendor/bin/phpunit -c tests/php/phpunit.xml --colors=always --testdox --coverage-text"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"stan": [
"vendor/bin/phpstan analyse"
],
"pint": [
"vendor/bin/pint"
]
},
"scripts-descriptions": {
"test:coverage": "Run the PHPUnit tests with coverage.",
"post-autoload-dump": "Run after autoloading has been dumped.",
"post-root-package-install": "Run after the root package has been installed.",
"post-create-project-cmd": "Run after the project has been created.",
"stan": "Run the PHPStan analyser.",
"pint": "Run the Pint analyser."
}
}