-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #757 from driehle/drop-php80
Drop PHP 8.0
- Loading branch information
Showing
3 changed files
with
54 additions
and
61 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,55 +1,17 @@ | ||
{ | ||
"name": "doctrine/doctrine-orm-module", | ||
"description": "Laminas Module that provides Doctrine ORM functionality", | ||
"type": "library", | ||
"license": "MIT", | ||
"type": "library", | ||
"keywords": [ | ||
"doctrine", | ||
"orm", | ||
"module", | ||
"laminas" | ||
], | ||
"homepage": "http://www.doctrine-project.org/", | ||
"authors": [ | ||
{ | ||
"name": "Kyle Spraggs", | ||
"email": "[email protected]", | ||
"homepage": "http://www.spiffyjr.me/" | ||
}, | ||
{ | ||
"name": "Marco Pivetta", | ||
"email": "[email protected]", | ||
"homepage": "http://marco-pivetta.com/" | ||
}, | ||
{ | ||
"name": "Evan Coury", | ||
"email": "[email protected]", | ||
"homepage": "http://blog.evan.pro/" | ||
}, | ||
{ | ||
"name": "Guilherme Blanco", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Tom H Anderson", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
}, | ||
"extra": { | ||
"laminas": { | ||
"config-provider": "DoctrineORMModule\\ConfigProvider", | ||
"module": "DoctrineORMModule" | ||
} | ||
}, | ||
"homepage": "https://www.doctrine-project.org/", | ||
"require": { | ||
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", | ||
"php": "~8.1.0 || ~8.2.0 || ~8.3.0", | ||
"ext-json": "*", | ||
"doctrine/dbal": "^2.13.7 || ^3.3.2", | ||
"doctrine/doctrine-laminas-hydrator": "^3.0.0", | ||
|
@@ -88,9 +50,9 @@ | |
"doctrine/migrations": "<3.3" | ||
}, | ||
"suggest": { | ||
"laminas/laminas-form": "if you want to use form elements backed by Doctrine", | ||
"doctrine/migrations": "doctrine migrations if you want to keep your schema definitions versioned", | ||
"laminas/laminas-developer-tools": "laminas-developer-tools if you want to profile operations executed by the ORM during development", | ||
"doctrine/migrations": "doctrine migrations if you want to keep your schema definitions versioned" | ||
"laminas/laminas-form": "if you want to use form elements backed by Doctrine" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
@@ -102,6 +64,19 @@ | |
"DoctrineORMModuleTest\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"sort-packages": true | ||
}, | ||
"extra": { | ||
"laminas": { | ||
"config-provider": "DoctrineORMModule\\ConfigProvider", | ||
"module": "DoctrineORMModule" | ||
} | ||
}, | ||
"scripts": { | ||
"check": [ | ||
"@cs-check", | ||
|
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