forked from chimeraphp/mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "chimera/mapping",
"description": "Useful annotations to configure the application layer of your software",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^7.3 || ^8.0",
"doctrine/annotations": "^1.8"
},
"require-dev": {
"infection/infection": "^0.14.2",
"lcobucci/coding-standard": "^3.1",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^8.4"
},
"autoload": {
"psr-4": {
"Chimera\\Mapping\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chimera\\Mapping\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}