-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.23 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
{
"name": "pabloveintimilla/frekr",
"description": "API wrapper of Frekr",
"keywords": ["php", "api", "frekr"],
"type": "library",
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"php": ">=7.1",
"symplify/easy-coding-standard": "^5.4",
"phpunit/phpunit": "^8.0",
"paulthebaud/phpunit-generator": "^2.1",
"symfony/var-dumper": "^4.2",
"phpmd/phpmd": "^2.6"
},
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pablo Veintimilla Vargas",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"PabloVeintimilla\\Frekr\\": "src/"
},
"classmap": ["src"]
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test-win": "vendor\\bin\\phpunit.bat",
"gentest": "./vendor/bin/phpunitgen",
"gentest-win": "vendor\\bin\\phpunitgen.bat",
"phpmd": "./vendor/bin/phpmd src/ text cleancode, codesize, controversial, design, naming, unusedcode",
"phpmd-win": "vendor\\bin\\phpmd.bat src\\ text cleancode, codesize, controversial, design, naming, unusedcode"
}
}