-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "neoblack/free-at-home-api",
"description": "Busch Jäger free@home API Client Library",
"license": "MIT",
"config": {
"prefer-stable": true,
"preferred-install": {
"*": "dist"
},
"discard-changes": true,
"bin-dir": "bin",
"sort-packages": true
},
"require": {
"php": "^7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "^1.4",
"psr/http-message": "^1.0",
"symfony/http-foundation": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpunit/phpunit": "^6.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^2.3|^3.0"
},
"keywords": [
"free@home",
"authorization",
"authentication",
"api"
],
"authors": [
{
"name": "Frank Nägler",
"homepage": "https://naegler.hamburg",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"NeoBlack\\FreeAtHomeApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NeoBlack\\FreeAtHomeApi\\Test\\": "tests/"
}
},
"scripts": {
"test:php:unit": [
"phpunit -c build/phpunit.xml --log-junit var/logs/phpunit-unit.xml --testsuite \"Unit Test Suite\""
],
"test:php:functional": [
"phpunit -c build/phpunit.xml --log-junit var/logs/phpunit-functional.xml --testsuite \"Functional Test Suite\""
],
"test:php:cover": [
"phpunit -c build/phpunit.xml --log-junit var/logs/phpunit.xml --coverage-clover var/logs/coverage.xml --coverage-html var/logs/coverage/"
],
"test": [
"@test:php:unit",
"@test:php:functional"
],
"lint": [
"parallel-lint src tests"
],
"cgl": [
"php-cs-fixer fix --config build/.php_cs.dist --format=junit > var/logs/php-cs-fixer.xml"
]
}
}