Files
coolify/composer.json

132 lines
4.3 KiB
JSON

{
"name": "coollabsio/coolify",
"description": "The Coolify project.",
"license": "Apache-2.0",
"type": "project",
"keywords": [
"coolify",
"deployment",
"docker",
"self-hosted",
"server"
],
"require": {
"php": "^8.4",
"danharrin/livewire-rate-limiting": "^2.1.0",
"doctrine/dbal": "^4.3.0",
"guzzlehttp/guzzle": "^7.9.3",
"laravel/fortify": "^1.27.0",
"laravel/framework": "^12.20.0",
"laravel/horizon": "^5.33.1",
"laravel/pail": "^1.2.3",
"laravel/prompts": "^0.3.6|^0.3.6|^0.3.6",
"laravel/sanctum": "^4.1.2",
"laravel/socialite": "^5.21.0",
"laravel/tinker": "^2.10.1",
"laravel/ui": "^4.6.1",
"lcobucci/jwt": "^5.5.0",
"league/flysystem-aws-s3-v3": "^3.29",
"league/flysystem-sftp-v3": "^3.30",
"livewire/livewire": "^3.6.4",
"log1x/laravel-webfonts": "^2.0.1",
"lorisleiva/laravel-actions": "^2.9.0",
"nubs/random-name-generator": "^2.2",
"phpseclib/phpseclib": "^3.0.46",
"pion/laravel-chunk-upload": "^1.5.6",
"poliander/cron": "^3.2.1",
"purplepixie/phpdns": "^2.2",
"pusher/pusher-php-server": "^7.2.7",
"resend/resend-laravel": "^0.19.0",
"sentry/sentry-laravel": "^4.15.1",
"socialiteproviders/authentik": "^5.2",
"socialiteproviders/clerk": "^5.0",
"socialiteproviders/discord": "^4.2",
"socialiteproviders/google": "^4.1",
"socialiteproviders/infomaniak": "^4.0",
"socialiteproviders/microsoft-azure": "^5.2",
"socialiteproviders/zitadel": "^4.2",
"spatie/laravel-activitylog": "^4.10.2",
"spatie/laravel-data": "^4.17.0",
"spatie/laravel-markdown": "^2.7",
"spatie/laravel-ray": "^1.40.2",
"spatie/laravel-schemaless-attributes": "^2.5.1",
"spatie/url": "^2.4",
"stevebauman/purify": "^6.3.1",
"stripe/stripe-php": "^16.6.0",
"symfony/yaml": "^7.3.1",
"visus/cuid2": "^4.1.0",
"yosymfony/toml": "^1.0.4",
"zircote/swagger-php": "^5.1.4"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.15.4",
"driftingly/rector-laravel": "^2.0.5",
"fakerphp/faker": "^1.24.1",
"laravel/dusk": "^8.3.3",
"laravel/pint": "^1.24",
"laravel/telescope": "^5.10",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.8.2",
"pestphp/pest": "^3.8.2",
"phpstan/phpstan": "^2.1.18",
"rector/rector": "^2.1.2",
"serversideup/spin": "^3.0.2",
"spatie/laravel-ignition": "^2.9.1",
"symfony/http-client": "^7.3.1"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"bootstrap/includeHelpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"scripts": {
"post-install-cmd": [
"cp -r 'hooks/' '.git/hooks/'",
"php -r \"copy('hooks/pre-commit', '.git/hooks/pre-commit');\"",
"php -r \"chmod('.git/hooks/pre-commit', 0777);\""
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"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"
]
}
}