forked from Ocramius/DoctrineBatchUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.29 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": "ocramius/doctrine-batch-utils",
"description": "A set of utilities to operate with Doctrine ORM's batch processing functionality",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Ocramius/DoctrineBatchUtils",
"keywords": [
"doctrine",
"doctrine2",
"orm",
"batch processing"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
}
],
"require": {
"php": "^7.3.0",
"doctrine/orm": "^2.7.2",
"doctrine/common": "^2.12.0"
},
"require-dev": {
"doctrine/coding-standard": "^7.0.2",
"infection/infection": "^0.15.2",
"phpstan/phpstan": "^0.11.19",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpunit/phpunit": "^9.0.2",
"roave/backward-compatibility-check": "^4.4",
"vimeo/psalm": "^3.9.5"
},
"autoload": {
"psr-4": {
"DoctrineBatchUtils\\": "src/DoctrineBatchUtils"
}
},
"autoload-dev": {
"psr-4": {
"DoctrineBatchUtilsTest\\": "test/DoctrineBatchUtilsTest"
}
}
}