coolify/composer.json

133 lines
4.3 KiB
JSON
Raw Normal View History

2023-03-17 14:33:48 +00:00
{
"name": "coollabsio/coolify",
"description": "The Coolify project.",
2024-10-31 16:23:49 +00:00
"license": "Apache-2.0",
2023-03-17 14:33:48 +00:00
"type": "project",
2023-05-22 13:47:40 +00:00
"keywords": [
"coolify",
"deployment",
"docker",
"self-hosted",
"server"
2023-05-22 13:47:40 +00:00
],
2023-03-17 14:33:48 +00:00
"require": {
2025-01-06 14:21:40 +00:00
"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",
2025-07-18 16:49:47 +00:00
"laravel/prompts": "^0.3.6|^0.3.6|^0.3.6",
"laravel/sanctum": "^4.1.2",
"laravel/socialite": "^5.21.0",
2025-03-31 16:50:42 +00:00
"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",
2025-03-31 16:50:42 +00:00
"log1x/laravel-webfonts": "^2.0.1",
"lorisleiva/laravel-actions": "^2.9.0",
2023-05-02 07:11:22 +00:00
"nubs/random-name-generator": "^2.2",
"phpseclib/phpseclib": "^3.0.46",
"pion/laravel-chunk-upload": "^1.5.6",
2025-03-31 16:50:42 +00:00
"poliander/cron": "^3.2.1",
"purplepixie/phpdns": "^2.2",
"pusher/pusher-php-server": "^7.2.7",
"resend/resend-laravel": "^0.20.0",
"sentry/sentry-laravel": "^4.15.1",
"socialiteproviders/authentik": "^5.2",
"socialiteproviders/clerk": "^5.0",
"socialiteproviders/discord": "^4.2",
"socialiteproviders/google": "^4.1",
2024-12-12 18:39:11 +00:00
"socialiteproviders/infomaniak": "^4.0",
2025-03-31 16:50:42 +00:00
"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",
2025-03-31 16:50:42 +00:00
"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",
2024-11-11 20:02:32 +00:00
"visus/cuid2": "^4.1.0",
2025-03-31 16:50:42 +00:00
"yosymfony/toml": "^1.0.4",
"zircote/swagger-php": "^5.1.4"
2023-03-17 14:33:48 +00:00
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.15.4",
"driftingly/rector-laravel": "^2.0.5",
2025-03-31 16:50:42 +00:00
"fakerphp/faker": "^1.24.1",
"laravel/boost": "^1.1",
"laravel/dusk": "^8.3.3",
"laravel/pint": "^1.24",
"laravel/telescope": "^5.10",
2025-03-31 16:50:42 +00:00
"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",
2025-03-31 16:50:42 +00:00
"serversideup/spin": "^3.0.2",
"spatie/laravel-ignition": "^2.9.1",
"symfony/http-client": "^7.3.1"
2023-03-17 14:33:48 +00:00
},
2024-10-28 12:40:29 +00:00
"minimum-stability": "stable",
"prefer-stable": true,
2023-03-17 14:33:48 +00:00
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
2024-10-28 12:40:29 +00:00
},
"files": [
"bootstrap/includeHelpers.php"
]
2023-03-17 14:33:48 +00:00
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
2024-10-28 12:40:29 +00:00
"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"
]
}
},
2023-03-17 14:33:48 +00:00
"scripts": {
2024-10-28 12:40:29 +00:00
"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);\""
2023-03-17 14:33:48 +00:00
],
"post-update-cmd": [
2023-05-24 20:37:18 +00:00
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
2023-06-01 11:27:45 +00:00
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
2023-03-17 14:33:48 +00:00
],
2024-10-28 12:40:29 +00:00
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
2024-09-23 18:45:42 +00:00
],
2023-03-17 14:33:48 +00:00
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
2024-10-28 12:40:29 +00:00
}
}