-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
41 lines (40 loc) · 1.06 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
{
"name": "nilportugues/sql-repository",
"description": "SQL Repository implementation",
"keywords": ["sql", "repository", "dbal", "doctrine", "doctrine", "hexagonal", "ports and adapters", "ports", "adapters", "pageable", "pagination", "nil portugues", "nilportugues"],
"type": "library",
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [
{
"name": "Nil Portugués",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.0",
"nilportugues/repository": "^3.1",
"nilportugues/assert": "^1.0",
"doctrine/dbal" : "^2.5"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"fabpot/php-cs-fixer": "1.9.*"
},
"autoload": {
"psr-4": {
"NilPortugues\\Foundation\\": "src",
"NilPortugues\\Example\\": "example/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\Foundation\\": "tests/"
}
},
"suggest": {
"nilportugues/repository-cache": "Cache database queries to improve performance."
}
}