-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
98 lines (98 loc) · 2.35 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "inspirum/balikobot-laravel",
"description": "Laravel package for inspirum/balikobot library",
"keywords": [
"balikobot",
"api-client",
"laravel",
"package"
],
"homepage": "https://github.com/inspirum/balikobot-php-laravel",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tomáš Novotný",
"email": "tomas.novotny@inspirum.cz",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0",
"illuminate/support": "^10.0",
"inspirum/balikobot": "^7.6"
},
"require-dev": {
"inspirum/coding-standard": "^1.5",
"laravel/laravel": "^10.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"shipmonk/composer-dependency-analyser": "^1.5",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Inspirum\\Balikobot\\Integration\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inspirum\\Balikobot\\Integration\\Laravel\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Inspirum\\Balikobot\\Integration\\Laravel\\BalikobotServiceProvider"
]
}
},
"scripts": {
"test": [
"@style:phpcs",
"@test:unit",
"@style:phpstan",
"@check:dependency"
],
"test:test": [
"@test:unit"
],
"test:unit": [
"@phpunit --testsuite=Unit"
],
"test:coverage": [
"@phpunit --coverage-text --coverage-html=var/phpunit/coverage"
],
"test:unit:coverage": [
"@phpunit --testsuite=Unit --coverage-text --coverage-html=var/phpunit/coverage"
],
"style:phpcs": [
"@phpcs"
],
"style:phpstan": [
"@phpstan -l 9"
],
"style:check": [
"@style:phpcs",
"@style:phpstan"
],
"style:fix": [
"@phpcbf src tests"
],
"check:dependency": [
"@composer-dependency-analyser"
],
"phpunit": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs -p -s --extensions=php --colors --report-width=140",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon",
"phpcbf": "./vendor/bin/phpcbf -p --extensions=php",
"composer-dependency-analyser": "./vendor/bin/composer-dependency-analyser"
}
}