forked from beberlei/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.21 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
{
"name": "beberlei/doctrineextensions",
"type": "library",
"description": "A set of extensions to Doctrine 2 that add support for additional query functions available in MySQL, Oracle, PostgreSQL and SQLite.",
"keywords": ["doctrine", "orm", "database"],
"license": "BSD-3-Clause",
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"},
{"name": "Steve Lacey", "email": "[email protected]"}
],
"require": {
"php": "^7.2 || ^8.0",
"doctrine/orm": "^2.7"
},
"require-dev": {
"doctrine/cache": "^1.11",
"friendsofphp/php-cs-fixer": "^2.14",
"nesbot/carbon": "*",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"symfony/yaml": "^4.4 || ^5.3 || ^6.0",
"zf1/zend-date": "^1.12",
"zf1/zend-registry": "^1.12"
},
"autoload": {
"psr-4": {"DoctrineExtensions\\" : "src/"}
},
"autoload-dev": {
"psr-4": {"DoctrineExtensions\\Tests\\": "tests/"}
},
"config": {
"sort-packages": true
},
"scripts": {
"lint": "php-cs-fixer fix --ansi --diff --diff-format udiff --show-progress=none --verbose",
"test": "phpunit --colors=always"
}
}