-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (38 loc) · 913 Bytes
/
composer.json
File metadata and controls
39 lines (38 loc) · 913 Bytes
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": "revotale/checkbox-ua",
"description": "A library to interact with https://checkbox.ua API.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"RevoTale\\CheckboxUA\\": "src/"
}
},
"require": {
"php": "^8.2",
"jane-php/open-api-runtime": "^7.6",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"jane-php/open-api-3": "^7.6",
"phpstan/phpstan": "^1.10 || ^2.0",
"php-cs-fixer/shim": "^3.51"
},
"authors": [
{
"name": "l-you",
"email": "l-you@revotale.com",
"homepage": "https://revotale.com"
}
],
"scripts": {
"test": "vendor/bin/phpstan analyse --memory-limit=1G -c phpstan.neon",
"fix": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"cs-check": "vendor/bin/php-cs-fixer check --allow-risky=yes"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}