diff options
author | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2024-08-13 23:45:21 +0200 |
commit | bf6655a534a6775d30cafa67bd801276bda1d98d (patch) | |
tree | c6381e3f6c81c33eab72508f410b165ba05f7e9c /vendor/doctrine/deprecations/composer.json | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/doctrine/deprecations/composer.json')
-rw-r--r-- | vendor/doctrine/deprecations/composer.json | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/vendor/doctrine/deprecations/composer.json b/vendor/doctrine/deprecations/composer.json new file mode 100644 index 0000000..f8319f9 --- /dev/null +++ b/vendor/doctrine/deprecations/composer.json | |||
@@ -0,0 +1,38 @@ | |||
1 | { | ||
2 | "name": "doctrine/deprecations", | ||
3 | "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", | ||
4 | "license": "MIT", | ||
5 | "type": "library", | ||
6 | "homepage": "https://www.doctrine-project.org/", | ||
7 | "require": { | ||
8 | "php": "^7.1 || ^8.0" | ||
9 | }, | ||
10 | "require-dev": { | ||
11 | "doctrine/coding-standard": "^9", | ||
12 | "phpstan/phpstan": "1.4.10 || 1.10.15", | ||
13 | "phpstan/phpstan-phpunit": "^1.0", | ||
14 | "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", | ||
15 | "psalm/plugin-phpunit": "0.18.4", | ||
16 | "psr/log": "^1 || ^2 || ^3", | ||
17 | "vimeo/psalm": "4.30.0 || 5.12.0" | ||
18 | }, | ||
19 | "suggest": { | ||
20 | "psr/log": "Allows logging deprecations via PSR-3 logger implementation" | ||
21 | }, | ||
22 | "autoload": { | ||
23 | "psr-4": { | ||
24 | "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" | ||
25 | } | ||
26 | }, | ||
27 | "autoload-dev": { | ||
28 | "psr-4": { | ||
29 | "DeprecationTests\\": "test_fixtures/src", | ||
30 | "Doctrine\\Foo\\": "test_fixtures/vendor/doctrine/foo" | ||
31 | } | ||
32 | }, | ||
33 | "config": { | ||
34 | "allow-plugins": { | ||
35 | "dealerdirect/phpcodesniffer-composer-installer": true | ||
36 | } | ||
37 | } | ||
38 | } | ||