diff options
Diffstat (limited to 'vendor/doctrine/collections/composer.json')
-rw-r--r-- | vendor/doctrine/collections/composer.json | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/vendor/doctrine/collections/composer.json b/vendor/doctrine/collections/composer.json new file mode 100644 index 0000000..4c36229 --- /dev/null +++ b/vendor/doctrine/collections/composer.json | |||
@@ -0,0 +1,63 @@ | |||
1 | { | ||
2 | "name": "doctrine/collections", | ||
3 | "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", | ||
4 | "license": "MIT", | ||
5 | "type": "library", | ||
6 | "keywords": [ | ||
7 | "php", | ||
8 | "collections", | ||
9 | "array", | ||
10 | "iterators" | ||
11 | ], | ||
12 | "authors": [ | ||
13 | { | ||
14 | "name": "Guilherme Blanco", | ||
15 | "email": "guilhermeblanco@gmail.com" | ||
16 | }, | ||
17 | { | ||
18 | "name": "Roman Borschel", | ||
19 | "email": "roman@code-factory.org" | ||
20 | }, | ||
21 | { | ||
22 | "name": "Benjamin Eberlei", | ||
23 | "email": "kontakt@beberlei.de" | ||
24 | }, | ||
25 | { | ||
26 | "name": "Jonathan Wage", | ||
27 | "email": "jonwage@gmail.com" | ||
28 | }, | ||
29 | { | ||
30 | "name": "Johannes Schmitt", | ||
31 | "email": "schmittjoh@gmail.com" | ||
32 | } | ||
33 | ], | ||
34 | "homepage": "https://www.doctrine-project.org/projects/collections.html", | ||
35 | "require": { | ||
36 | "php": "^8.1", | ||
37 | "doctrine/deprecations": "^1" | ||
38 | }, | ||
39 | "require-dev": { | ||
40 | "ext-json": "*", | ||
41 | "doctrine/coding-standard": "^12", | ||
42 | "phpstan/phpstan": "^1.8", | ||
43 | "phpstan/phpstan-phpunit": "^1.0", | ||
44 | "phpunit/phpunit": "^10.5", | ||
45 | "vimeo/psalm": "^5.11" | ||
46 | }, | ||
47 | "autoload": { | ||
48 | "psr-4": { | ||
49 | "Doctrine\\Common\\Collections\\": "src" | ||
50 | } | ||
51 | }, | ||
52 | "autoload-dev": { | ||
53 | "psr-4": { | ||
54 | "Doctrine\\Tests\\Common\\Collections\\": "tests" | ||
55 | } | ||
56 | }, | ||
57 | "config": { | ||
58 | "allow-plugins": { | ||
59 | "composer/package-versions-deprecated": true, | ||
60 | "dealerdirect/phpcodesniffer-composer-installer": true | ||
61 | } | ||
62 | } | ||
63 | } | ||