-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.15 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
{
"name": "decole/planka-php-sdk",
"type": "library",
"description": "An easy-to-use PHP Class for accessing Planka's API.",
"keywords": ["planka", "api"],
"homepage": "https://github.com/decole/planka-php-sdk",
"license": "AGPL-3.0",
"authors": [
{
"name": "Galochkin Sergey",
"email": "decole@rambler.ru"
},
{
"name": "Airy",
"email": "airy@live.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"version": "1.2.0",
"require": {
"php": ">=8.1.0",
"symfony/http-client": "^6.2",
"symfony/mime": "^6.2",
"fp4php/functional": "^5.2"
},
"autoload": {
"psr-4": {
"Planka\\Bridge\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"scripts": {
"fix-cs": [
"@php ./vendor/bin/php-cs-fixer fix --diff -v --allow-risky=yes --ansi"
]
},
"require-dev": {
"symfony/var-dumper": "^6.2",
"vimeo/psalm": "^5.11",
"friendsofphp/php-cs-fixer": "^3.65"
}
}