Normalize composer.json file
This commit is contained in:
@@ -1,7 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "coollabsio/coolify",
|
"name": "coollabsio/coolify",
|
||||||
"type": "project",
|
|
||||||
"description": "The Coolify project.",
|
"description": "The Coolify project.",
|
||||||
|
"license": "MIT",
|
||||||
|
"type": "project",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"coolify",
|
"coolify",
|
||||||
"deployment",
|
"deployment",
|
||||||
@@ -9,21 +10,20 @@
|
|||||||
"self-hosted",
|
"self-hosted",
|
||||||
"server"
|
"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",
|
||||||
@@ -32,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",
|
||||||
@@ -53,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": {
|
||||||
@@ -108,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
2
composer.lock
generated
@@ -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": "86f43c2e25a32afe65da962885fc9f25",
|
"content-hash": "74c6029744c5c1101c704098a280bba1",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "amphp/amp",
|
"name": "amphp/amp",
|
||||||
|
Reference in New Issue
Block a user