forked from inspirum/balikobot-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·68 lines (68 loc) · 1.63 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
{
"name": "inspirum/balikobot",
"description": "",
"keywords": [
"inspirum",
"inspishop",
"balikobot"
],
"homepage": "https://github.com/inspirum/balikobot-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tomáš Novotný",
"email": "tomas.novotny@inspirum.cz",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.3",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-mockery": "^0.12"
},
"autoload": {
"psr-4": {
"Inspirum\\Balikobot\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inspirum\\Balikobot\\Tests\\": "tests"
}
},
"scripts": {
"test:test": [
"@phpunit"
],
"test:unit": [
"@phpunit --testsuite=Unit"
],
"test:integration": [
"@phpunit --testsuite=Integration"
],
"test:coverage": [
"@phpunit --coverage-html=./build/coverage"
],
"style:check": [
"@phpcs src tests",
"@phpstan -l 8 src"
],
"style:fix": [
"@phpcbf src tests"
],
"phpunit": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs -p -s --standard=./ruleset.xml --extensions=php --colors --report-width=140 --runtime-set ignore_errors_on_exit 1",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon.dist",
"phpcbf": "./vendor/bin/phpcbf -p --standard=./ruleset.xml --extensions=php --runtime-set ignore_errors_on_exit 1"
}
}