Files
archived-UNIT3D/composer.json
HDVinnie 51fa8ec46b update: laravel
- Laravel 11 introduces a new default application structure with fewer default files. Namely, new Laravel applications contain fewer service providers, middleware, and configuration files.

However, it is not recommend that Laravel 10 applications upgrading to Laravel 11 attempt to migrate their application structure, as Laravel 11 has been carefully tuned to also support the Laravel 10 application structure.
2024-04-23 16:06:37 -04:00

110 lines
3.5 KiB
JSON

{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.3",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-zend-opcache": "*",
"ext-zip": "*",
"assada/laravel-achievements": "^2.6",
"bjeavons/zxcvbn-php": "^1.3.1",
"doctrine/dbal": "^3.8.3",
"gabrielelana/byte-units": "^0.5.0",
"guzzlehttp/guzzle": "^7.8.1",
"hdvinnie/laravel-html-purifier": "^v3.0.0",
"hdvinnie/laravel-joypixel-emojis": "^v3.0.0",
"hdvinnie/laravel-security-headers": "^v3.0.0",
"intervention/image": "^2.7.2",
"joypixels/assets": "^v7.0.1",
"laravel/fortify": "1.20.0",
"laravel/framework": "^v11.4.0",
"laravel/tinker": "^2.9.0",
"livewire/livewire": "^v3.4.10",
"marcreichel/igdb-laravel": "^4.2.0",
"paragonie/constant_time_encoding": "^2.6.3",
"spatie/laravel-backup": "^8.6.0",
"spatie/laravel-cookie-consent": "^3.3.0",
"spatie/laravel-image-optimizer": "^1.6.2",
"spatie/ssl-certificate": "^2.6.5",
"symfony/dom-crawler": "^6.4.4",
"theodorejb/polycast": "dev-master",
"voku/anti-xss": "^4.1.42",
"vstelmakh/url-highlight": "^3.0.3"
},
"require-dev": {
"brianium/paratest": "v7.4.0",
"calebdw/larastan-livewire": "^1.0.1",
"fakerphp/faker": "^1.23.1",
"jasonmccreary/laravel-test-assertions": "^2.4",
"larastan/larastan": "^2.9.2",
"laravel/pint": "^1.15.1",
"laravel/sail": "^1.29.1",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^v8.1.1",
"pestphp/pest": "^v2.34.7",
"pestphp/pest-plugin-laravel": "^v2.3.0",
"pestphp/pest-plugin-livewire": "^v2.1.0",
"phpunit/phpunit": "10.5.17",
"ryoluo/sail-ssl": "^1.3.2",
"spatie/laravel-ignition": "^2.5.1"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"ext-mcrypt": "1.0"
},
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan vendor:publish --force --tag=livewire:assets --ansi",
"@php artisan vendor:publish --tag=public --provider=\"hdvinnie\\LaravelJoyPixels\\LaravelJoyPixelsServiceProvider\""
],
"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 vendor:publish --tag=laravel-assets --ansi --force"
]
}
}