forked from smartystreets/smartystreets-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 774 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 774 Bytes
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
{
"name": "smartystreets/phpsdk",
"type": "library",
"description": "The official PHP client library from SmartyStreets.",
"homepage": "https://github.com/smartystreets/smartystreets-php-sdk",
"license": "Apache-2.0",
"authors": [
{
"name": "SmartyStreets SDK Team",
"email": "support@smarty.com"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^9",
"psr/log": "^1.0.1"
},
"suggest": {
"psr/log": "^1.0.1"
},
"autoload": {
"psr-4": {
"SmartyStreets\\PhpSdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SmartyStreets\\PhpSdk\\Tests\\": "tests/"
}
}
}