-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump dependencies for Laravel 11 * Update GitHub Actions for Laravel 11 * specify l11-compatibility branch for laravel-doctrine/orm * changed orm's dev version * restricted phpunit/phpunit verstion to v9 * added missing ->once() call to Mockery stubs * switched dependency to laravel-doctrine/orm to newly released v2.1.0 * dropeed support for Laravel v6, v7, v8 * fixed php version
- Loading branch information
Showing
3 changed files
with
96 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
{ | ||
"name": "laravel-doctrine/migrations", | ||
"type": "library", | ||
"description": "Doctrine Migrations for Laravel", | ||
"license": "MIT", | ||
"keywords": [ | ||
"doctrine", | ||
"laravel", | ||
"orm", | ||
"data mapper", | ||
"database", | ||
"migrations" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Patrick Brouwers", | ||
"email": "[email protected]" | ||
"name": "laravel-doctrine/migrations", | ||
"type": "library", | ||
"description": "Doctrine Migrations for Laravel", | ||
"license": "MIT", | ||
"keywords": [ | ||
"doctrine", | ||
"laravel", | ||
"orm", | ||
"data mapper", | ||
"database", | ||
"migrations" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Patrick Brouwers", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^8", | ||
"doctrine/migrations": "^3.4", | ||
"doctrine/dbal": "^2.10.1|^3", | ||
"illuminate/config": "^9.0|^10.0|^11.0", | ||
"illuminate/contracts": "^9.0|^10.0|^11.0", | ||
"illuminate/console": "^9.0|^10.0|^11.0", | ||
"laravel-doctrine/orm": "^2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.0 | ^8.3 | ^9.3", | ||
"phpstan/phpstan": "^1.9", | ||
"mockery/mockery": "^1.3.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LaravelDoctrine\\Migrations\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"LaravelDoctrine\\Migrations\\MigrationsServiceProvider" | ||
] | ||
} | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4|^8", | ||
"doctrine/migrations": "^3.4", | ||
"doctrine/dbal": "^2.10.1|^3", | ||
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0", | ||
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", | ||
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", | ||
"laravel-doctrine/orm": "^1.0|^2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^7.0 | ^8.3 | ^9.3", | ||
"phpstan/phpstan": "^1.9", | ||
"mockery/mockery": "^1.3.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"LaravelDoctrine\\Migrations\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"LaravelDoctrine\\Migrations\\MigrationsServiceProvider" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.