-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.1 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
{
"name": "tlamedia/sparkpost-bundle",
"type": "symfony-bundle",
"description": "The SparkPostBundle integrates the SparkPost PHP library with Symfony, allowing you to interact with the Sparkpost API in your Symfony projects.",
"keywords": ["sparkpost", "bundle", "symfony"],
"homepage": "https://github.com/tlamedia",
"license": "MIT",
"authors": [
{
"name": "Torben Lundsgaard",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"guzzlehttp/guzzle": "^6.3",
"php-http/guzzle6-adapter": "^1.1",
"sparkpost/sparkpost": "^2.1",
"symfony/config": "^3.4 || ^4.4 || ^5.4",
"symfony/dependency-injection": "^3.4.26 || ^4.4 || ^5.4",
"symfony/http-kernel": "^3.4 || ^4.4.50 || ^5.4"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5.2"
},
"autoload": {
"psr-4": {
"Tla\\SparkPostBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tla\\SparkPostBundle\\Tests\\": "tests/"
}
}
}