Skip to content

Commit

Permalink
Merge pull request #85 from RonasIT/update-laravel-version
Browse files Browse the repository at this point in the history
Update to Laravel 11
  • Loading branch information
DenTray authored Jul 1, 2024
2 parents 2dfa6d6 + 94a8de6 commit f269098
Show file tree
Hide file tree
Showing 5 changed files with 1,658 additions and 1,244 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-with-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.3'
extensions: pgsql
- uses: actions/checkout@v3
- name: Install Dependencies
Expand Down
3 changes: 2 additions & 1 deletion app/Providers/DevDependenciesServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public function boot(): void
{
if (config('app.env') === 'local') {
// To use "require-dev" dependencies, their providers should be registered via full namespace
App::register(\RonasIT\Support\EntityGeneratorServiceProvider::class);
// TODO: restore when the dependency would be updated
//App::register(\RonasIT\Support\EntityGeneratorServiceProvider::class);
App::register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
}
}
Expand Down
16 changes: 7 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,36 +8,34 @@
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"php": "^8.3",
"ext-openssl": "*",
"doctrine/dbal": "^3.8",
"laravel/framework": "^10.48",
"laravel/framework": "^11.11",
"laravel/legacy-factories": "^1.4",
"laravel/serializable-closure": "^1.3",
"laravel/tinker": "^2.9",
"laravel/ui": "^4.5",
"maatwebsite/excel": "^3.1.55",
"nunomaduro/collision": "^6.4",
"nunomaduro/collision": "^8.1",
"php-open-source-saver/jwt-auth": "^2.2",
"psr/simple-cache": "^3.0",
"ronasit/laravel-helpers": "dev-master",
"ronasit/laravel-swagger": "dev-master",
"spatie/laravel-google-cloud-storage": "^2.3",
"spatie/laravel-ignition": "^2.4",
"symfony/http-client": "6.4.5",
"symfony/mailgun-mailer": "6.4.4",
"symfony/postmark-mailer": "6.4.4"
"symfony/http-client": "^7.0",
"symfony/mailgun-mailer": "^7.0",
"symfony/postmark-mailer": "^7.0"
},
"require-dev": {
"ext-json": "*",
"barryvdh/laravel-ide-helper": "^3.0",
"brainmaestro/composer-git-hooks": "v3.0.0-alpha.1",
"codedefective/cg-hooks": "^3.1",
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.6",
"php-coveralls/php-coveralls": "^2.7",
"phpunit/phpunit": "^10.5",
"ronasit/laravel-entity-generator": ">=2.0.4-beta",
"tightenco/tlint": "^9.3"
},
"autoload": {
Expand Down
Loading

0 comments on commit f269098

Please sign in to comment.