-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
92 lines (92 loc) · 2.84 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "8.0.9",
"algolia/algoliasearch-client-php": "^2.7.0",
"axisofstevil/stop-words": "^0.1.0",
"cocur/slugify": "^4.0",
"doctrine/dbal": "^2.10",
"elasticsearch/elasticsearch": "^7.8.0",
"ezyang/htmlpurifier": "^4.12.0",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^1.0",
"guzzlehttp/guzzle": "^6.3",
"intervention/image": "^2.5.1",
"kreait/laravel-firebase": "^3.0",
"laravel-notification-channels/fcm": "~2.0",
"laravel/framework": "^7.0",
"laravel/sanctum": "^2.6",
"laravel/scout": "^8.0.1",
"laravel/slack-notification-channel": "^2.0",
"laravel/socialite": "^4.4",
"laravel/tinker": "^2.0",
"laravel/ui": "^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-rackspace": "^1.0",
"league/omnipay": "^3.0",
"maennchen/zipstream-php": "^2.1.0",
"omnipay/paypal": "^3.0",
"omnipay/stripe": "^3.0",
"pda/pheanstalk": "^4.0",
"predis/predis": "^1.1",
"pusher/pusher-php-server": "^4.1.4",
"sentry/sentry-laravel": "^1.8.0",
"spatie/color": "^1.2",
"spatie/flysystem-dropbox": "^1.2",
"spatie/laravel-analytics": "^3.10",
"symfony/dom-crawler": "^5.1",
"teamtnt/laravel-scout-tntsearch-driver": "^8.3.0",
"willdurand/email-reply-parser": "^2.9.0",
"zbateson/mail-mime-parser": "^1.2.1"
},
"require-dev": {
"facade/ignition": "^2.0",
"nunomaduro/collision": "^4.1",
"barryvdh/laravel-ide-helper": "^2.7.0",
"itsgoingd/clockwork": "^4.1.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform-check": false
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Common\\": "common/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"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"
]
}
}