-
Notifications
You must be signed in to change notification settings - Fork 50
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 #76 from piotaixr/feature/dbal3.0
Make code compatible (and requiring) Doctrine ORM 2.10 and DBAL 3.0
- Loading branch information
Showing
61 changed files
with
130 additions
and
209 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,61 @@ | ||
{ | ||
"name": "scienta/doctrine-json-functions", | ||
"name": "scienta/doctrine-json-functions", | ||
"abandoned": false, | ||
"type": "library", | ||
"description": "A set of extensions to Doctrine 2 that add support for json query functions.", | ||
"keywords": ["doctrine", "orm", "json", "dql", "database", "mysql", "postgres", "postgresql", "mariadb", "sqlite"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Doctrine Json Functions Contributors", | ||
"homepage": "https://github.com/ScientaNL/DoctrineJsonFunctions/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.1 || ^8.0", | ||
"ext-pdo": "*", | ||
"doctrine/orm": "2.*", | ||
"doctrine/dbal": "2.*" | ||
}, | ||
"require-dev": { | ||
"doctrine/orm": "^2.7", | ||
"doctrine/coding-standard": "^8.0 || ^9.0", | ||
"phpunit/phpunit": "^8.0 || ^9.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Scienta\\DoctrineJsonFunctions\\" : "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Doctrine\\Tests\\": "tests/Doctrine/Tests", | ||
"Scienta\\DoctrineJsonFunctions\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "4.1-dev" | ||
} | ||
}, | ||
"suggest": { | ||
"dunglas/doctrine-json-odm": "To serialize / deserialize objects as JSON documents." | ||
} | ||
"type": "library", | ||
"description": "A set of extensions to Doctrine 2 that add support for json query functions.", | ||
"keywords": [ | ||
"doctrine", | ||
"orm", | ||
"json", | ||
"dql", | ||
"database", | ||
"mysql", | ||
"postgres", | ||
"postgresql", | ||
"mariadb", | ||
"sqlite" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Doctrine Json Functions Contributors", | ||
"homepage": "https://github.com/ScientaNL/DoctrineJsonFunctions/contributors" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.3 || ^8.0", | ||
"ext-pdo": "*", | ||
"doctrine/orm": "^2.0", | ||
"doctrine/dbal": "^3.0" | ||
}, | ||
"require-dev": { | ||
"doctrine/coding-standard": "^8.0 || ^9.0", | ||
"phpunit/phpunit": "^8.0 || ^9.0", | ||
"doctrine/annotations": "^1.13" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Scienta\\DoctrineJsonFunctions\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Doctrine\\Tests\\": "tests/Doctrine/Tests", | ||
"Scienta\\DoctrineJsonFunctions\\Tests\\": "tests/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "4.1-dev" | ||
} | ||
}, | ||
"suggest": { | ||
"dunglas/doctrine-json-odm": "To serialize / deserialize objects as JSON documents." | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
} |
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
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
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
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
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
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
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
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
Oops, something went wrong.