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/instantiator/composer.json | |
parent | 94d67a4b51f8e62e7d518cce26a526ae1ec48278 (diff) | |
download | AppliGestionPHP-bf6655a534a6775d30cafa67bd801276bda1d98d.zip |
VERSION 0.2 doctrine ORM et entités
Diffstat (limited to 'vendor/doctrine/instantiator/composer.json')
-rw-r--r-- | vendor/doctrine/instantiator/composer.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/vendor/doctrine/instantiator/composer.json b/vendor/doctrine/instantiator/composer.json new file mode 100644 index 0000000..179145e --- /dev/null +++ b/vendor/doctrine/instantiator/composer.json | |||
@@ -0,0 +1,48 @@ | |||
1 | { | ||
2 | "name": "doctrine/instantiator", | ||
3 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", | ||
4 | "type": "library", | ||
5 | "license": "MIT", | ||
6 | "homepage": "https://www.doctrine-project.org/projects/instantiator.html", | ||
7 | "keywords": [ | ||
8 | "instantiate", | ||
9 | "constructor" | ||
10 | ], | ||
11 | "authors": [ | ||
12 | { | ||
13 | "name": "Marco Pivetta", | ||
14 | "email": "ocramius@gmail.com", | ||
15 | "homepage": "https://ocramius.github.io/" | ||
16 | } | ||
17 | ], | ||
18 | "require": { | ||
19 | "php": "^8.1" | ||
20 | }, | ||
21 | "require-dev": { | ||
22 | "ext-phar": "*", | ||
23 | "ext-pdo": "*", | ||
24 | "doctrine/coding-standard": "^11", | ||
25 | "phpbench/phpbench": "^1.2", | ||
26 | "phpstan/phpstan": "^1.9.4", | ||
27 | "phpstan/phpstan-phpunit": "^1.3", | ||
28 | "phpunit/phpunit": "^9.5.27", | ||
29 | "vimeo/psalm": "^5.4" | ||
30 | }, | ||
31 | "autoload": { | ||
32 | "psr-4": { | ||
33 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" | ||
34 | } | ||
35 | }, | ||
36 | "autoload-dev": { | ||
37 | "psr-0": { | ||
38 | "DoctrineTest\\InstantiatorPerformance\\": "tests", | ||
39 | "DoctrineTest\\InstantiatorTest\\": "tests", | ||
40 | "DoctrineTest\\InstantiatorTestAsset\\": "tests" | ||
41 | } | ||
42 | }, | ||
43 | "config": { | ||
44 | "allow-plugins": { | ||
45 | "dealerdirect/phpcodesniffer-composer-installer": true | ||
46 | } | ||
47 | } | ||
48 | } | ||