summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f0b6a4a21ec516fd66260b59c10f57c6b56d2bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
    "name": "doctrine/collections",
    "type": "library",
    "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
    "keywords": [
        "php",
        "collections",
        "array",
        "iterators"
    ],
    "homepage": "https://www.doctrine-project.org/projects/collections.html",
    "license": "MIT",
    "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"}
    ],
    "require": {
        "php": "^7.1.3 || ^8.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.0",
        "doctrine/coding-standard": "^6.0",
        "phpstan/phpstan-shim": "^0.9.2",
        "vimeo/psalm": "^3.8.1"
    },
    "autoload": {
        "psr-4": { "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" }
    },
    "autoload-dev": {
        "psr-4": {
            "Doctrine\\Tests\\": "tests/Doctrine/Tests"
        }
    }
}