-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
103 lines (103 loc) · 2.41 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "^10.0",
"laravelcollective/html": "^6.0",
"laravel/socialite": "~5.0",
"suin/php-rss-writer": "^1.5",
"pusher/pusher-php-server": "^7.0",
"eluceo/ical": "^2.14.0",
"bepsvpt/secure-headers": "^7.1",
"facebook/php-business-sdk": "^12.0",
"fakerphp/faker": "^1.18",
"spatie/laravel-ignition": "^2.0",
"symfony/mailgun-mailer": "^6.0",
"symfony/http-client": "^6.0",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"jamband/ripple": "^0.10.3",
"intervention/image": "^2.7",
"spatie/laravel-sitemap": "^6.2",
"laravel/tinker": "^2.7",
"predis/predis": "^2.0",
"laravel/sanctum": "^3.2",
"laravel-notification-channels/twitter": "^7.0",
"laravel/ui": "^4.2",
"vinkla/shield": "^9.0",
"nunomaduro/collision": "^7.1",
"anhskohbo/no-captcha": "^3.5",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4",
"nyholm/psr7": "^1.6",
"sentry/sentry-laravel": "^3.4"
},
"require-dev": {
"mockery/mockery": "^1.0",
"symfony/dom-crawler": "^6.0",
"barryvdh/laravel-ide-helper": "^2.8",
"nunomaduro/larastan": "^2.0",
"laravel/dusk": "^7.7",
"phpunit/phpunit": "^9.6",
"barryvdh/laravel-debugbar": "^3.8"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Http/helpers.php",
"app/Http/Flash.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"tests/utilities/functions.php"
]
},
"scripts": {
"post-install-cmd": [
"php-latest artisan clear-compiled"
],
"post-update-cmd": [
"php-latest artisan clear-compiled"
],
"post-create-project-cmd": [
"php-latest -r \"copy('.env.example', '.env');\"",
"php-latest artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"phpstan": [
"./vendor/bin/phpstan analyse"
],
"tests": [
"php artisan migrate --verbose",
"php artisan db:seed",
"./vendor/bin/phpunit tests"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable"
}