mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-05 11:09:33 -06:00
104 lines
3.2 KiB
JSON
104 lines
3.2 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"ext-dom": "*",
|
|
"ext-json": "*",
|
|
"ext-libxml": "*",
|
|
"ext-zip": "*",
|
|
"ext-zend-opcache": "*",
|
|
"appstract/laravel-opcache": "^4.0",
|
|
"assada/laravel-achievements": "^2.3",
|
|
"doctrine/dbal": "^2.10",
|
|
"fruitcake/laravel-cors": "^2.0.5",
|
|
"gabrielelana/byte-units": "^0.5.0",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"hdvinnie/laravel-html-purifier": "^1.0",
|
|
"hdvinnie/laravel-joypixel-emojis": "^1.0",
|
|
"hdvinnie/laravel-security-headers": "^1.0",
|
|
"hootlex/laravel-moderation": "^1.0",
|
|
"intervention/image": "^2.5",
|
|
"joypixels/assets": "^6.0",
|
|
"laravel/framework": "^9.0",
|
|
"laravel/tinker": "^2.7",
|
|
"laravel/ui": "^3.1.0",
|
|
"league/flysystem-sftp-v3": "^3.0",
|
|
"livewire/livewire": "^2.0",
|
|
"marcreichel/igdb-laravel": "^3.1.2",
|
|
"paragonie/constant_time_encoding": "^2.0",
|
|
"predis/predis": "^1.1",
|
|
"spatie/laravel-backup": "^8.0.1",
|
|
"spatie/laravel-cookie-consent": "^3.0",
|
|
"spatie/laravel-image-optimizer": "^1.6",
|
|
"spatie/ssl-certificate": "^1.12",
|
|
"symfony/dom-crawler": "^6.0",
|
|
"theodorejb/polycast": "^1.0",
|
|
"voku/anti-xss": "^4.1",
|
|
"vstelmakh/url-highlight": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"brianium/paratest": "^6.3",
|
|
"fakerphp/faker": "^1.16",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^6.0",
|
|
"phpunit/phpunit": "^9.5.10",
|
|
"styleci/cli": "^1.2",
|
|
"spatie/laravel-ignition": "^1.0",
|
|
"laravel/sail": "^1.0.1"
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"platform": {
|
|
"ext-mcrypt": "1.0"
|
|
}
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|