-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.2 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "zenstruck/class-metadata",
"description": "Add human readable class aliases & metadata with efficient lookups.",
"homepage": "https://github.com/zenstruck/class-metadata",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.4",
"doctrine/persistence": "^1.0|^2.0|^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.21",
"symfony/phpunit-bridge": "^6.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Metadata\\Tests\\": "tests/" }
},
"conflict": {
"composer": "<2.4"
},
"extra": {
"class": "Zenstruck\\Metadata\\Composer\\Plugin"
},
"suggest": {
"doctrine/persistence": "To use the AliasManagerRegistry decorator"
},
"minimum-stability": "dev",
"prefer-stable": true
}