mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
This commit adds the necessary changes to the `composer.json` file to include the `laravel/octane` package as a dependency. It also introduces a new `config/octane.php` file that contains the configuration for Octane's server, HTTPS settings, event listeners, warm/flush bindings, Swoole tables, cache table, file watching, garbage collection threshold, and maximum execution time. The added dependencies in `package.json` include `chokidar`, which is used for file watching functionality. These changes enable the use of Laravel Octane for improved performance and efficiency in handling requests.
94 lines
2.8 KiB
JSON
94 lines
2.8 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The skeleton application for the Laravel framework.",
|
|
"keywords": [
|
|
"laravel",
|
|
"framework"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"andcarpi/laravel-popper": "^0.9.4",
|
|
"anhskohbo/no-captcha": "^3.5",
|
|
"blade-ui-kit/blade-icons": "^1.5",
|
|
"creativecrafts/laravel-paginate-collection": "^0.2.4",
|
|
"cviebrock/eloquent-sluggable": "^10.0",
|
|
"dolejska-daniel/riot-api": "^5",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"intervention/image": "^3.0",
|
|
"laravel/framework": "^10.10",
|
|
"laravel/octane": "^2.2",
|
|
"laravel/pulse": "^1.0@beta",
|
|
"laravel/sanctum": "^3.2",
|
|
"laravel/tinker": "^2.8",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"saade/blade-iconsax": "^1.1",
|
|
"simonhamp/the-og": "^0.2.2",
|
|
"spatie/laravel-backup": "^8.3",
|
|
"spatie/laravel-query-builder": "^5.6",
|
|
"spatie/sheets": "^1.10",
|
|
"sqids/sqids": "^0.4.1"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.9",
|
|
"barryvdh/laravel-ide-helper": "^2.13",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"laravel/pint": "^1.13",
|
|
"laravel/sail": "^1.18",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^7.0",
|
|
"phpunit/phpunit": "^10.1",
|
|
"rector/rector": "^0.18.13",
|
|
"spatie/laravel-ignition": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"app/Helpers/HelperFunctions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
|
|
"@php artisan ide-helper:generate",
|
|
"@php artisan ide-helper:meta"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "beta",
|
|
"prefer-stable": true
|
|
}
|