summaryrefslogtreecommitdiff
path: root/vendor/doctrine/instantiator/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/instantiator/composer.json')
-rw-r--r--vendor/doctrine/instantiator/composer.json48
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}