-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.26 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
{
"name": "plotkabytes/redlink-api-symfony-bundle",
"description": "Symfony Bundle to include the redlink api.",
"type": "symfony-bundle",
"keywords": [
"redlink",
"api",
"redlink",
"emaillabs",
"rest",
"php",
"library",
"email",
"sms",
"push",
"sdk",
"symfony"
],
"license": "MIT",
"authors": [
{
"name": "Mateusz Żyła",
"email": "mateusz.zylaa@gmail.com"
}
],
"require": {
"php": "^7.2||^8.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0",
"symfony/http-client-contracts": "^1.0|^2.0|^3.0",
"plotkabytes/redlink-api-php-client": "^1.0.0"
},
"require-dev" : {
"friendsofphp/php-cs-fixer": "^3.3",
"phpunit/phpunit": "^8.0",
"rector/rector": "^0.12.21",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-symfony": "^1.1.8",
"guzzlehttp/guzzle": "^7.2",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-4": {
"Plotkabytes\\RedlinkApiBundle\\": ""
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"auto-format": [
"vendor/bin/php-cs-fixer fix src/ --rules=@Symfony && vendor/bin/php-cs-fixer fix tests/ --rules=@Symfony"
]
}
}