-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.11 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
{
"name": "ecommit/doctrine-utils",
"description": "Doctrine utils.",
"keywords": ["doctrine", "paginator", "filters"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Ecommit\\DoctrineUtils\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\DoctrineUtils\\Tests\\": "tests/" }
},
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.8|^4.0",
"ecommit/paginator": "^1.0",
"symfony/options-resolver": "^6.4|^7.4|^8.0"
},
"require-dev": {
"doctrine/orm": "*",
"friendsofphp/php-cs-fixer": "^3.88",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0",
"symfony/cache": "*"
},
"suggest": {
"doctrine/orm": "Doctrine ORM"
},
"conflict": {
"doctrine/orm": "<2.19.0 || >=4.0.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}