-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "juliangut/mapping",
"description": "Base for mapping support",
"keywords": [
"doctrine",
"annotations",
"attributes",
"mapping",
"php",
"json",
"yaml",
"xml"
],
"homepage": "https://github.com/juliangut/mapping",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Julián Gutiérrez",
"email": "[email protected]",
"homepage": "http://juliangut.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/juliangut/mapping",
"issues": "https://github.com/juliangut/mapping/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"psr/simple-cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"doctrine/annotations": "^2.0",
"infection/infection": "~0.25|~0.27",
"juliangut/easy-coding-standard-config": "^1.19",
"juliangut/phpstan-config": "^1.2",
"overtrue/phplint": "^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.14",
"phpunit/phpunit": "^9.6|^10.4",
"povils/phpmnd": "^3.2",
"roave/security-advisories": "dev-master",
"symfony/yaml": "^6.0|^7.0"
},
"suggest": {
"symfony/yaml": "In order to load mappings from YAML files (>=6.0)"
},
"autoload": {
"psr-4": {
"Jgut\\Mapping\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jgut\\Mapping\\Tests\\": "tests/Mapping/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}