1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "nexmo/client",
- "description": "PHP Client for using Nexmo's API.",
- "license": "MIT",
- "type": "library",
- "authors": [
- {
- "name": "Tim Lytle",
- "email": "tim@nexmo.com",
- "role": "Developer",
- "homepage": "http://twitter.com/tjlytle"
- }
- ],
- "support": {
- "email": "devrel@nexmo.com"
- },
- "require": {
- "php": ">=5.6",
- "php-http/client-implementation": "^1.0",
- "zendframework/zend-diactoros": "^1.3",
- "php-http/guzzle6-adapter": "^1.0",
- "lcobucci/jwt": "^3.2"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7",
- "php-http/mock-client": "^0.3.0",
- "estahn/phpunit-json-assertions": "^1.0.0",
- "squizlabs/php_codesniffer": "^3.1"
- },
- "autoload": {
- "psr-4": {
- "Nexmo\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Nexmo\\": "test/",
- "NexmoTest\\": "test/"
- }
- }
- }
|