forked from beberlei/DoctrineExtensions
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
39 lines (39 loc) · 1.22 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
{
"name": "dukecity/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",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{"name": "Benjamin Eberlei", "email": "[email protected]"},
{"name": "Steve Lacey", "email": "[email protected]"}
],
"require": {
"php": "^8.1",
"doctrine/orm": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"nesbot/carbon": "^2.72",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5",
"symfony/cache": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0"
},
"autoload": {
"psr-4": {"DoctrineExtensions\\" : "src/"}
},
"autoload-dev": {
"psr-4": {"DoctrineExtensions\\Tests\\": "tests/"}
},
"config": {
"sort-packages": true
},
"scripts": {
"lint": "php-cs-fixer fix --ansi --diff --show-progress=none --verbose",
"test": "phpunit --colors=auto",
"phpstan": "phpstan analyse"
}
}