-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.16 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
45
46
47
48
{
"name": "tugmaks/doctrine-walkers",
"description": "Set of doctrine walkers",
"license": [
"MIT"
],
"type": "library",
"keywords": [
"doctrine-walker",
"output-walker",
"doctrine",
"skip-locked",
"nulls-last",
"nulls-first",
"tablesample"
],
"authors": [
{
"name": "Maxim Tyugaev",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"doctrine/orm": "^2.15"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.39",
"ergebnis/php-cs-fixer-config": "^6.22",
"friendsofphp/php-cs-fixer": "^3.49",
"icanhazstring/composer-unused": "^0.8.10",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.4"
},
"autoload": {
"psr-4": {
"Tugmaks\\DoctrineWalkersTest\\": "tests/",
"Tugmaks\\DoctrineWalkers\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}