Skip to content

Commit

Permalink
Update to Laravel 11 and Carbon 3
Browse files Browse the repository at this point in the history
  • Loading branch information
carlobeltrame committed May 15, 2024
1 parent aa5ec51 commit 41a0cc8
Show file tree
Hide file tree
Showing 10 changed files with 1,795 additions and 2,324 deletions.
2 changes: 1 addition & 1 deletion .github/actions/deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ssh -l $SSH_USERNAME -T $SSH_HOST <<EOF
set -e
php -v
cd $SSH_DIRECTORY
php -r "if(PHP_VERSION_ID<${PHP_MIN_VERSION_ID:-80100}){echo \"Your PHP version is too old\\nYou might be able to use these instructions on your hosting as well: https://www.cyon.ch/support/a/php-standardversion-fur-die-kommandozeile-festlegen\n\";exit(1);}"
php -r "if(PHP_VERSION_ID<${PHP_MIN_VERSION_ID:-80200}){echo \"Your PHP version is too old\\nYou might be able to use these instructions on your hosting as well: https://www.cyon.ch/support/a/php-standardversion-fur-die-kommandozeile-festlegen\n\";exit(1);}"
APP_CONTACT_LINK=$APP_CONTACT_LINK php artisan down --render=updating
EOF
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ docker-compose run e2e open

## Produktive Installation

> Qualix basiert auf Laravel 10 und benötigt deshalb eine PHP Version >= 8.1.0
> Qualix basiert auf Laravel 11 und benötigt deshalb eine PHP Version >= 8.2.0
1. **Code herunterladen**: `git clone https://github.com/gloggi/qualix.git && cd qualix`
2. **Server-Einstellungen**: Eine Kopie von .env.example namens .env erstellen und die Angaben darin ergänzen. Zum Beispiel so (kritische Angaben sind mit `<snip>` zensiert):
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@
],
"license": "MIT",
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"calebporzio/parental": "^1.2.0",
"doctrine/dbal": "^3.3.6",
"laravel/framework": "^10.0",
"laravel/framework": "^11.0",
"laravel/socialite": "^5.5.2",
"laravel/tinker": "^2.8",
"laravel/ui": "^4.0",
"phpoffice/phpspreadsheet": "^1.16",
"sentry/sentry-laravel": "^3.2.0",
"sentry/sentry-laravel": "^4.5.1",
"troelskn/laravel-fillable-relations": "master"
},
"require-dev": {
Expand All @@ -27,7 +26,7 @@
"fakerphp/faker": "^1.9.1",
"laracasts/cypress": "^3.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^7.0",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.0",
"spatie/laravel-db-snapshots": "^2.3.0",
"symfony/dom-crawler": "^5.1.2"
Expand Down
Loading

0 comments on commit 41a0cc8

Please sign in to comment.