-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 990 Bytes
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 990 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
34
35
36
37
38
39
40
41
{
"name": "gliterd/smartystreets",
"type": "library",
"description": "PHP SDK smarty street international client API",
"keywords": ["smarty-street"],
"homepage": "https://github.com/gliterd/smartystreets",
"license": "MIT",
"authors": [
{
"name": "Ramesh Mhetre",
"email": "mhetreramesh@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"SmartyStreets\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SmartyStreets\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"format": "phpcbf --standard=psr2 src/"
},
"config": {
"sort-packages": true
}
}