-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
35 lines (35 loc) · 1.09 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
{
"name": "phpfui/constantcontact",
"description": "Object Oriented Wrapper for Constant Contact API V3 for PHP 8+",
"minimum-stability": "stable",
"keywords": ["Constant", "Contact", "API", "V3", "Object Oriented", "Object-Oriented"],
"homepage": "http://www.phpfui.com",
"license": "MIT",
"authors": [
{
"name": "Bruce Wells",
"email": "brucekwells@gmail.com"
}
],
"require": {
"php": ">=8.0 <8.5",
"guzzlehttp/guzzle": "^7.3",
"spatie/guzzle-rate-limiter-middleware": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "<12.0",
"gitonomy/gitlib": ">=1.2",
"phpfui/phpunit-syntax-coverage": "^1.0",
"roave/security-advisories": "dev-latest",
"friendsofphp/php-cs-fixer": "*",
"symfony/yaml": "^7.0",
"phpstan/phpstan": "*",
"graham-campbell/guzzle-factory": "^7.0"
},
"autoload": {
"psr-4": {"PHPFUI\\ConstantContact\\": "src/ConstantContact/"}
},
"autoload-dev": {
"psr-4": {"Tests\\": "Tests/", "Tool\\": "Tool/"}
}
}