-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 1014 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
35
36
37
38
39
40
41
{
"name": "maldoinc/doctrine-filter",
"description": "Quickly add advanced filtering/searching and sorting capabilities to any resource in your APIs or Web apps that use Doctrine.",
"type": "library",
"keywords": [
"symfony",
"doctrine",
"rest",
"rest-api",
"doctrine-orm"
],
"homepage": "https://github.com/maldoinc/doctrine-filter",
"license": "MIT",
"authors": [
{
"name": "Emirald Mateli",
"email": "aldo.mateli@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8",
"doctrine/orm": "^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.9",
"friendsofphp/php-cs-fixer": "3.*",
"symfony/cache": "5.*"
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Maldoinc\\": "src/"
}
}
}