-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.91 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
{
"name": "fabiang/doctrine-dynamic",
"description": "Load Doctrine mappings dynamically for your entities by configuration",
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Fabian Grutschus",
"email": "f.grutschus@lubyte.de"
}
],
"autoload": {
"psr-4": {
"Fabiang\\DoctrineDynamic\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fabiang\\DoctrineDynamic\\Behat\\": "tests/features/bootstrap/",
"Fabiang\\DoctrineDynamic\\Behat\\NamespaceOne\\Entity\\": "tests/entities/NamespaceOne/",
"Fabiang\\DoctrineDynamic\\Behat\\NamespaceTwo\\Entity\\": "tests/entities/NamespaceTwo/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"doctrine/common": "^3.0",
"doctrine/orm": "^2.5",
"doctrine/persistence": "^3.0",
"laminas/laminas-hydrator": "^3.0 || ^4.0",
"laminas/laminas-stdlib": "^3.0"
},
"require-dev": {
"behat/behat": ">=3.8",
"dms/phpunit-arraysubset-asserts": ">=0.4.0",
"phpspec/prophecy-phpunit": ">=2.0",
"phpunit/php-invoker": ">=3.1",
"phpunit/phpunit": ">=9.6.21",
"webmozart/assert": ">=1.11.0",
"symfony/cache": "^5.4 || ^6.0",
"doctrine/annotations": "^1.13",
"laminas/laminas-coding-standard": ">=2.3",
"vimeo/psalm": ">=4.23"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm --no-cache",
"phpunit": "phpunit",
"behat": "behat",
"test": [
"@phpcs",
"@psalm",
"@phpunit",
"@behat"
]
}
}