-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 887 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
{
"name": "goldoni/php7.2-query-builder",
"description": "This PHP library is responsible for building SQL query strings, Paginate and Hydration via an object oriented PHP interface.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Goldoni Fouotsa",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Goldoni\\Builder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Goldoni\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2.0",
"pagerfanta/pagerfanta": "^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^7.4",
"php-coveralls/php-coveralls": "^2.1"
}
}