-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.31 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
{
"name": "arus/doctrine-bridge",
"homepage": "https://github.com/autorusltd/doctrine-bridge",
"description": "Arus // Doctrine Bridge for PHP 7.2+ (incl. PHP 8) based on PHP-DI",
"license": "MIT",
"keywords": [
"arus",
"fenric",
"doctrine",
"php7",
"php8"
],
"authors": [
{
"name": "Anatoly Fenric",
"email": "afenric@gmail.com",
"homepage": "https://github.com/fenric"
}
],
"require": {
"php": "^7.2|^8.0",
"ramsey/uuid": "^3.9",
"ramsey/uuid-doctrine": "^1.6",
"pmill/doctrine-array-hydrator": "0.1.7",
"symfony/string": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "7.5.20|9.5.0",
"arus/php-coding-standard": "^1.0",
"php-di/php-di": "^6.0",
"doctrine/orm": "^2.7",
"doctrine/migrations": "^2.2",
"symfony/validator": "^5.0",
"monolog/monolog": "^2.0"
},
"autoload": {
"psr-4": {
"Arus\\Doctrine\\Bridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arus\\Doctrine\\Bridge\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit --colors=always --coverage-text",
"phpcs"
]
}
}