-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.1 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
{
"name": "matecat/dqf-integrator",
"type": "library",
"description": "A library for an easy integrator of DQF in PHP applications",
"keywords": ["dqf", "client", "php"],
"homepage": "https://github.com/matecat/dqf-integrator",
"license": "MIT",
"support": {
"issues": "https://github.com/matecat/dqf-integrator/issues"
},
"authors": [
{
"name": "Mauro Cassani",
"email": "maurocassani1978@gmail.com",
"homepage": "https://github.com/mauretto78"
}
],
"autoload": {
"psr-4": {
"Matecat\\Dqf\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Matecat\\Dqf\\Tests\\": "tests/" }
},
"require": {
"php": ">=5.5",
"guzzlehttp/guzzle": "^6.3",
"monolog/monolog": "^1.0",
"shrikeh/teapot": "^2.3",
"ext-json": "*"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "~5.7",
"phpstan/phpstan": "^0.11.12",
"friendsofphp/php-cs-fixer": "^2.15",
"predis/predis": "^1.1",
"ramsey/uuid": "^3.8",
"robmorgan/phinx": "^0.11.1",
"symfony/console": "^3.4.17 || ^4.1.6",
"fzaninotto/faker": "^1.8"
}
}