123
composer.json
Executable file
123
composer.json
Executable file
@@ -0,0 +1,123 @@
|
||||
{
|
||||
"name": "laravel/laravel",
|
||||
"description": "The Laravel Framework.",
|
||||
"keywords": [
|
||||
"framework",
|
||||
"laravel"
|
||||
],
|
||||
"license": "MIT",
|
||||
"type": "project",
|
||||
"require": {
|
||||
"php": ">=8.1",
|
||||
"adbario/php-dot-notation": "^3.3",
|
||||
"algolia/algoliasearch-client-php": "^3.4",
|
||||
"axisofstevil/stop-words": "^1.0",
|
||||
"bacon/bacon-qr-code": "^2.0.3",
|
||||
"cocur/slugify": "^4.5",
|
||||
"doctrine/dbal": "^3.4",
|
||||
"elasticsearch/elasticsearch": "^8.0",
|
||||
"ezyang/htmlpurifier": "^4.16",
|
||||
"geoip2/geoip2": "^3.0",
|
||||
"google/analytics-data": "^0.11",
|
||||
"google/apiclient": "^2.12",
|
||||
"guzzlehttp/guzzle": "^7.8",
|
||||
"http-interop/http-factory-guzzle": "^1.2",
|
||||
"intervention/image": "^3.0",
|
||||
"itsgoingd/clockwork": "^5.1",
|
||||
"james-heinrich/getid3": "^1.9",
|
||||
"jenssegers/agent": "^2.6",
|
||||
"laravel/fortify": "^1.19",
|
||||
"laravel/framework": "^10.0",
|
||||
"laravel/horizon": "^5.21",
|
||||
"laravel/pulse": "^1.0@beta",
|
||||
"laravel/sanctum": "^3.3",
|
||||
"laravel/scout": "^10.6",
|
||||
"laravel/slack-notification-channel": "^3.1",
|
||||
"laravel/socialite": "^5.5",
|
||||
"league/color-extractor": "0.4",
|
||||
"league/flysystem-aws-s3-v3": "^3.2",
|
||||
"league/flysystem-ftp": "^3.0",
|
||||
"maennchen/zipstream-php": "^3.1",
|
||||
"matchish/laravel-scout-elasticsearch": "^7.5",
|
||||
"meilisearch/meilisearch-php": "^1.5",
|
||||
"moneyphp/money": "^4.3",
|
||||
"muxinc/mux-php": "^3.11",
|
||||
"opcodesio/log-viewer": "^3.10",
|
||||
"pda/pheanstalk": "^5.0",
|
||||
"predis/predis": "^2.0",
|
||||
"react/promise": "^2.3",
|
||||
"sentry/sentry-laravel": "^4.1",
|
||||
"spatie/color": "^1.5",
|
||||
"spatie/flysystem-dropbox": "^3.0",
|
||||
"spatie/laravel-ignition": "^2.3",
|
||||
"stripe/stripe-php": "^13.6",
|
||||
"symfony/dom-crawler": "^6.4",
|
||||
"symfony/http-client": "^6.4",
|
||||
"symfony/mailgun-mailer": "^6.4",
|
||||
"symfony/postmark-mailer": "^6.4",
|
||||
"symfony/stopwatch": "^6.4",
|
||||
"teamtnt/laravel-scout-tntsearch-driver": "^13.2",
|
||||
"torann/geoip": "^3.0",
|
||||
"webd/language": "^0.3.0",
|
||||
"webklex/php-imap": "^5.5",
|
||||
"willdurand/email-reply-parser": "^2.10",
|
||||
"willdurand/negotiation": "^3.1",
|
||||
"zbateson/mail-mime-parser": "^2.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-debugbar": "^3.15",
|
||||
"fakerphp/faker": "^1.9.1",
|
||||
"laravel/telescope": "^5.9",
|
||||
"nunomaduro/collision": "^7.1",
|
||||
"rector/rector": "^0.13.10"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"php-http/discovery": true
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": [
|
||||
"itsgoingd/clockwork",
|
||||
"matchish/laravel-scout-elasticsearch"
|
||||
]
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"Common\\": "common/"
|
||||
},
|
||||
"classmap": [
|
||||
"database/seeders",
|
||||
"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"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@php artisan horizon:publish --ansi",
|
||||
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user