forked from autorusltd/doctrine-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.46 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
{
"name": "sunrise/doctrine-bridge",
"homepage": "https://github.com/sunrise-php/doctrine-bridge",
"description": "Sunrise // Bridge to Doctrine for PHP 7.2+",
"license": "MIT",
"keywords": [
"arus",
"fenric",
"sunrise",
"doctrine",
"php7",
"php8",
"bridge",
"doctrine"
],
"authors": [
{
"name": "Anatoly Fenric",
"email": "afenric@gmail.com",
"homepage": "https://github.com/fenric"
}
],
"require": {
"php": "^7.2|^8.0",
"symfony/string": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5",
"sunrise/coding-standard": "1.0.0",
"doctrine/annotations": "~1.13.0",
"doctrine/dbal": "~2.13.0",
"doctrine/orm": "~2.10.0",
"doctrine/migrations": "~3.2.0",
"symfony/cache": "~5.3.0",
"symfony/validator": "~5.3.0"
},
"autoload": {
"psr-4": {
"Sunrise\\Bridge\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sunrise\\Bridge\\Doctrine\\Tests\\Fixtures\\": "tests/fixtures/"
}
},
"scripts": {
"test": [
"phpcs",
"XDEBUG_MODE=coverage phpunit --coverage-text --colors=always"
],
"build": [
"phpdoc -d src/ -t phpdoc/",
"XDEBUG_MODE=coverage phpunit --coverage-html coverage/"
]
}
}