mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-19 10:23:14 +00:00
Move V5 source, migrations, UI, scripts, and tests into documentation, then remove V5 routes, models, jobs, configuration, dependencies, and application hooks.
120 lines
3.9 KiB
JSON
120 lines
3.9 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.2.1",
|
|
"doctrine/dbal": "^4.4.4",
|
|
"guzzlehttp/guzzle": "^7.15.3",
|
|
"laravel/fortify": "^1.37.3",
|
|
"laravel/framework": "^12.65.0",
|
|
"laravel/horizon": "^5.48.2",
|
|
"laravel/mcp": "^0.6.7",
|
|
"laravel/nightwatch": "^1.28.6",
|
|
"laravel/pail": "^1.2.7",
|
|
"laravel/prompts": "^0.3.22|^0.3.22|^0.3.22",
|
|
"laravel/sanctum": "^4.3.3",
|
|
"laravel/socialite": "^5.29.0",
|
|
"laravel/tinker": "^2.11.1",
|
|
"laravel/ui": "^4.6.3",
|
|
"lcobucci/jwt": "^5.6.0",
|
|
"league/flysystem-aws-s3-v3": "^3.35.2",
|
|
"league/flysystem-sftp-v3": "^3.33",
|
|
"livewire/livewire": "^3.8.3",
|
|
"log1x/laravel-webfonts": "^2.0.1",
|
|
"lorisleiva/laravel-actions": "^2.10.2",
|
|
"nubs/random-name-generator": "^2.2",
|
|
"phpseclib/phpseclib": "^3.0.56",
|
|
"pion/laravel-chunk-upload": "^1.6.1",
|
|
"poliander/cron": "^3.3.1",
|
|
"purplepixie/phpdns": "^2.3.6",
|
|
"pusher/pusher-php-server": "^7.3.0",
|
|
"resend/resend-laravel": "^0.20.0",
|
|
"sentry/sentry-laravel": "^4.27.0",
|
|
"socialiteproviders/authentik": "^5.3",
|
|
"socialiteproviders/clerk": "^5.1",
|
|
"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.12.3",
|
|
"spatie/laravel-data": "^4.23.0",
|
|
"spatie/laravel-markdown": "^2.8.0",
|
|
"spatie/laravel-schemaless-attributes": "^2.6.0",
|
|
"spatie/url": "^2.4",
|
|
"stevebauman/purify": "^6.3.2",
|
|
"stripe/stripe-php": "^16.6.0",
|
|
"symfony/yaml": "^7.4.15",
|
|
"visus/cuid2": "^6.0.0",
|
|
"yosymfony/toml": "^1.0.4",
|
|
"zircote/swagger-php": "^5.8.3"
|
|
},
|
|
"require-dev": {
|
|
"driftingly/rector-laravel": "^2.5.0",
|
|
"fakerphp/faker": "^1.24.1",
|
|
"laravel/boost": "^2.4.8",
|
|
"laravel/dusk": "^8.6.0",
|
|
"laravel/pint": "^1.30.4",
|
|
"mockery/mockery": "^1.6.12",
|
|
"nunomaduro/collision": "^8.9.5",
|
|
"pestphp/pest": "^4.7.8",
|
|
"pestphp/pest-plugin-browser": "^4.3.1",
|
|
"phpstan/phpstan": "^2.2.8",
|
|
"rector/rector": "^2.6.1",
|
|
"serversideup/spin": "^3.3.0",
|
|
"symfony/http-client": "^7.4.16"
|
|
},
|
|
"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
|
|
},
|
|
"scripts": {
|
|
"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"
|
|
]
|
|
}
|
|
}
|