-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.84 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
{
"name": "plotkabytes/redlink-api-php-client",
"description": "Redlink API client for PHP",
"keywords": [
"redlink",
"api",
"emaillabs",
"rest",
"php",
"library",
"email",
"sms",
"push",
"sdk"
],
"license": "MIT",
"authors": [
{
"name": "Mateusz Żyła",
"email": "mateusz.zylaa@gmail.com"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"ext-xml": "*",
"php-http/cache-plugin": "^1.7.5",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"php-http/multipart-stream-builder": "^1.2",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0",
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0",
"symfony/polyfill-php80": "^1.17",
"symfony/validator": "^4.4 || ^5.0 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4.1",
"phpunit/phpunit": "^8.5.15 || ^9.5.4",
"psalm/phar": "4.6.3",
"friendsofphp/php-cs-fixer": "^3.3",
"guzzlehttp/guzzle": "^7.4",
"rector/rector": "^0.12.21",
"phpstan/phpstan": "^1.5",
"ergebnis/phpstan-rules": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0"
},
"autoload": {
"psr-4": {
"Plotkabytes\\RedlinkApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Plotkabytes\\RedlinkApi\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"auto-format": [
"vendor/bin/php-cs-fixer fix src/ --rules=@Symfony && vendor/bin/php-cs-fixer fix tests/ --rules=@Symfony"
]
}
}