Merge pull request #3824 from lucasmichot/feat/composer

Some composer.json files change
This commit is contained in:
🏔️ Peak
2024-10-31 17:43:51 +01:00
committed by GitHub
2 changed files with 54 additions and 51 deletions

View File

@@ -1,26 +1,29 @@
{ {
"name": "laravel/laravel", "name": "coollabsio/coolify",
"description": "The Coolify project.",
"license": "Apache-2.0",
"type": "project", "type": "project",
"description": "The Laravel Framework.",
"keywords": [ "keywords": [
"framework", "coolify",
"laravel" "deployment",
"docker",
"self-hosted",
"server"
], ],
"license": "MIT",
"require": { "require": {
"php": "^8.2", "php": "^8.2",
"danharrin/livewire-rate-limiting": "^1.1", "danharrin/livewire-rate-limiting": "^1.1",
"doctrine/dbal": "^3.6", "doctrine/dbal": "^3.6",
"guzzlehttp/guzzle": "^7.5.0", "guzzlehttp/guzzle": "^7.5.0",
"laravel/fortify": "^v1.16.0", "laravel/fortify": "^1.16.0",
"laravel/framework": "^v11", "laravel/framework": "^11",
"laravel/horizon": "^5.29.1", "laravel/horizon": "^5.29.1",
"laravel/pail": "^1.1", "laravel/pail": "^1.1",
"laravel/prompts": "^0.1.6", "laravel/prompts": "^0.1.6",
"laravel/sanctum": "^v4.0", "laravel/sanctum": "^4.0",
"laravel/socialite": "^v5.14.0", "laravel/socialite": "^5.14.0",
"laravel/telescope": "^5.2", "laravel/telescope": "^5.2",
"laravel/tinker": "^v2.8.1", "laravel/tinker": "^2.8.1",
"laravel/ui": "^4.2", "laravel/ui": "^4.2",
"lcobucci/jwt": "^5.0.0", "lcobucci/jwt": "^5.0.0",
"league/flysystem-aws-s3-v3": "^3.0", "league/flysystem-aws-s3-v3": "^3.0",
@@ -29,7 +32,7 @@
"log1x/laravel-webfonts": "^1.0", "log1x/laravel-webfonts": "^1.0",
"lorisleiva/laravel-actions": "^2.7", "lorisleiva/laravel-actions": "^2.7",
"nubs/random-name-generator": "^2.2", "nubs/random-name-generator": "^2.2",
"phpseclib/phpseclib": "~3.0", "phpseclib/phpseclib": "^3.0",
"pion/laravel-chunk-upload": "^1.5", "pion/laravel-chunk-upload": "^1.5",
"poliander/cron": "^3.0", "poliander/cron": "^3.0",
"purplepixie/phpdns": "^2.1", "purplepixie/phpdns": "^2.1",
@@ -50,53 +53,43 @@
}, },
"require-dev": { "require-dev": {
"barryvdh/laravel-debugbar": "^3.13", "barryvdh/laravel-debugbar": "^3.13",
"fakerphp/faker": "^v1.21.0", "fakerphp/faker": "^1.21.0",
"laravel/dusk": "^v8.0", "laravel/dusk": "^8.0",
"laravel/pint": "^1.16", "laravel/pint": "^1.16",
"mockery/mockery": "^1.5.1", "mockery/mockery": "^1.5.1",
"nunomaduro/collision": "^v8.1", "nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.16", "pestphp/pest": "^2.16",
"phpstan/phpstan": "^1.10", "phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0.19", "phpunit/phpunit": "^10.0.19",
"serversideup/spin": "^v1.1.0", "serversideup/spin": "^1.1.0",
"spatie/laravel-ignition": "^2.1.0", "spatie/laravel-ignition": "^2.1.0",
"symfony/http-client": "^6.2" "symfony/http-client": "^6.2"
}, },
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": { "autoload": {
"files": [
"bootstrap/includeHelpers.php"
],
"psr-4": { "psr-4": {
"App\\": "app/", "App\\": "app/",
"Database\\Factories\\": "database/factories/", "Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/" "Database\\Seeders\\": "database/seeders/"
} },
"files": [
"bootstrap/includeHelpers.php"
]
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {
"Tests\\": "tests/" "Tests\\": "tests/"
} }
}, },
"scripts": { "config": {
"post-autoload-dump": [ "allow-plugins": {
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "pestphp/pest-plugin": true,
"@php artisan package:discover --ansi" "php-http/discovery": true
], },
"post-update-cmd": [ "optimize-autoloader": true,
"@php artisan vendor:publish --tag=laravel-assets --ansi --force", "preferred-install": "dist",
"Illuminate\\Foundation\\ComposerScripts::postUpdate" "sort-packages": true
],
"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-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}, },
"extra": { "extra": {
"laravel": { "laravel": {
@@ -105,15 +98,25 @@
] ]
} }
}, },
"config": { "scripts": {
"optimize-autoloader": true, "post-install-cmd": [
"preferred-install": "dist", "cp -r 'hooks/' '.git/hooks/'",
"sort-packages": true, "php -r \"copy('hooks/pre-commit', '.git/hooks/pre-commit');\"",
"allow-plugins": { "php -r \"chmod('.git/hooks/pre-commit', 0777);\""
"pestphp/pest-plugin": true, ],
"php-http/discovery": true "post-update-cmd": [
} "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
}, "Illuminate\\Foundation\\ComposerScripts::postUpdate"
"minimum-stability": "stable", ],
"prefer-stable": true "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"
]
}
} }

2
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "943975ec232403b96a40d215253492d8", "content-hash": "74c6029744c5c1101c704098a280bba1",
"packages": [ "packages": [
{ {
"name": "amphp/amp", "name": "amphp/amp",