-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
124 lines (124 loc) · 4.44 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1",
"appstract/laravel-opcache": "^4.0",
"bugsnag/bugsnag-laravel": "^2",
"bugsnag/bugsnag-psr-logger": "^2.0",
"doctrine/dbal": "^3.5",
"encodia/laravel-health-env-vars": "^1.5",
"encodia/laravel-something-wrong": "^0.1.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.19",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"spatie/laravel-data": "^2.2",
"spatie/laravel-health": "^1.18",
"spatie/laravel-query-builder": "^5.1",
"spatie/laravel-queueable-action": "^2.14",
"statamic/cms": "^3.4.0",
"statamic/eloquent-driver": "^1.1"
},
"require-dev": {
"deployer/deployer": "^7.1",
"fakerphp/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^3.13",
"laravel-lang/lang": "^12.13",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"lukeraymonddowning/pest-plugin-money": "^1.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"nunomaduro/larastan": "^2.4",
"nunomaduro/phpinsights": "^2.6",
"oomphinc/composer-installers-extender": "^2.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-laravel": "^1.4",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-mock": "^1.0",
"pestphp/pest-plugin-parallel": "^1.2",
"pestphp/pest-plugin-watch": "1.x-dev",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0",
"spatie/pest-plugin-snapshots": "^1.1",
"spatie/pest-plugin-test-time": "^1.1",
"timacdonald/log-fake": "^2.0"
},
"autoload": {
"files": [
"constants/constants.php"
],
"psr-4": {
"App\\": "src/App/",
"Domain\\": "src/Domain",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"pre-update-cmd": [
"Statamic\\Console\\Composer\\Scripts::preUpdateCmd"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan statamic:install --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"
],
"dry-fix": "php-cs-fixer fix --verbose --dry-run --config=./.php-cs-fixer.php",
"fix": "php-cs-fixer fix --config=./.php-cs-fixer.php",
"analyse": "./vendor/bin/phpstan analyse --xdebug --memory-limit 1G",
"larastan": "./vendor/bin/phpstan analyse --xdebug --memory-limit 1G",
"test": "./vendor/bin/pest --parallel --stop-on-failure --exclude-group=API,S3",
"coverage": "./vendor/bin/pest --parallel --stop-on-failure --coverage --min=75"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"composer/installers": true,
"oomphinc/composer-installers-extender": true,
"pestphp/pest-plugin-laravel": true,
"pestphp/pest-plugin-parallel": true,
"pestphp/pest-plugin-livewire": true,
"pestphp/pest-plugin-mock": true,
"pestphp/pest-plugin-money": true,
"pestphp/pest-plugin-faker": true,
"pestphp/pest-plugin-snapshots": true,
"pestphp/pest-plugin-test-time": true,
"pestphp/pest-plugin-test-watch": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}