62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "doctrine/collections",
|
|
"description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"keywords": [
|
|
"php",
|
|
"collections",
|
|
"array",
|
|
"iterators"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Guilherme Blanco",
|
|
"email": "guilhermeblanco@gmail.com"
|
|
},
|
|
{
|
|
"name": "Roman Borschel",
|
|
"email": "roman@code-factory.org"
|
|
},
|
|
{
|
|
"name": "Benjamin Eberlei",
|
|
"email": "kontakt@beberlei.de"
|
|
},
|
|
{
|
|
"name": "Jonathan Wage",
|
|
"email": "jonwage@gmail.com"
|
|
},
|
|
{
|
|
"name": "Johannes Schmitt",
|
|
"email": "schmittjoh@gmail.com"
|
|
}
|
|
],
|
|
"homepage": "https://www.doctrine-project.org/projects/collections.html",
|
|
"require": {
|
|
"php": "^7.1.3 || ^8.0",
|
|
"doctrine/deprecations": "^0.5.3 || ^1"
|
|
},
|
|
"require-dev": {
|
|
"doctrine/coding-standard": "^9.0 || ^10.0",
|
|
"phpstan/phpstan": "^1.4.8",
|
|
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5",
|
|
"vimeo/psalm": "^4.22"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Doctrine\\Tests\\": "tests/Doctrine/Tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"composer/package-versions-deprecated": true,
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|