-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 941 Bytes
/
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
{
"name": "mediagone/doctrine-specifications",
"type": "library",
"description": "Doctrine implementation of repository Specifications pattern",
"keywords": ["doctrine", "repository", "specifications", "orm", "database", "criteria"],
"license": "MIT",
"authors": [
{"name": "Bruce Suire", "role": "Developer"}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mediagone\\Doctrine\\Specifications\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mediagone\\Doctrine\\Specifications\\": "tests/Unit/"
}
},
"require": {
"php": "^7.4|^8.0",
"doctrine/orm": "^2.7|^3.0",
"symfony/var-dumper": "^5.1|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"scripts": {
"tests": "phpunit -c phpunit.xml.dist --testsuite Unit_Tests"
}
}