diff options
Diffstat (limited to 'vendor/doctrine/persistence/composer.json')
-rw-r--r-- | vendor/doctrine/persistence/composer.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/vendor/doctrine/persistence/composer.json b/vendor/doctrine/persistence/composer.json new file mode 100644 index 0000000..03d832f --- /dev/null +++ b/vendor/doctrine/persistence/composer.json | |||
@@ -0,0 +1,58 @@ | |||
1 | { | ||
2 | "name": "doctrine/persistence", | ||
3 | "type": "library", | ||
4 | "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", | ||
5 | "keywords": [ | ||
6 | "persistence", | ||
7 | "object", | ||
8 | "mapper", | ||
9 | "orm", | ||
10 | "odm" | ||
11 | ], | ||
12 | "homepage": "https://www.doctrine-project.org/projects/persistence.html", | ||
13 | "license": "MIT", | ||
14 | "authors": [ | ||
15 | {"name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com"}, | ||
16 | {"name": "Roman Borschel", "email": "roman@code-factory.org"}, | ||
17 | {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"}, | ||
18 | {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}, | ||
19 | {"name": "Johannes Schmitt", "email": "schmittjoh@gmail.com"}, | ||
20 | {"name": "Marco Pivetta", "email": "ocramius@gmail.com"} | ||
21 | ], | ||
22 | "require": { | ||
23 | "php": "^7.2 || ^8.0", | ||
24 | "doctrine/event-manager": "^1 || ^2", | ||
25 | "psr/cache": "^1.0 || ^2.0 || ^3.0" | ||
26 | }, | ||
27 | "require-dev": { | ||
28 | "phpstan/phpstan": "1.11.1", | ||
29 | "phpstan/phpstan-phpunit": "^1", | ||
30 | "phpstan/phpstan-strict-rules": "^1.1", | ||
31 | "doctrine/coding-standard": "^12", | ||
32 | "doctrine/common": "^3.0", | ||
33 | "phpunit/phpunit": "^8.5 || ^9.5", | ||
34 | "symfony/cache": "^4.4 || ^5.4 || ^6.0", | ||
35 | "vimeo/psalm": "4.30.0 || 5.24.0" | ||
36 | }, | ||
37 | "conflict": { | ||
38 | "doctrine/common": "<2.10" | ||
39 | }, | ||
40 | "autoload": { | ||
41 | "psr-4": { | ||
42 | "Doctrine\\Persistence\\": "src/Persistence" | ||
43 | } | ||
44 | }, | ||
45 | "autoload-dev": { | ||
46 | "psr-4": { | ||
47 | "Doctrine\\Tests\\": "tests", | ||
48 | "Doctrine\\Tests_PHP74\\": "tests_php74", | ||
49 | "Doctrine\\Tests_PHP81\\": "tests_php81" | ||
50 | } | ||
51 | }, | ||
52 | "config": { | ||
53 | "allow-plugins": { | ||
54 | "dealerdirect/phpcodesniffer-composer-installer": true, | ||
55 | "composer/package-versions-deprecated": true | ||
56 | } | ||
57 | } | ||
58 | } | ||