From 7170909be4048a2690aa644291dd215a4800c169 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 21 Oct 2016 07:48:32 +0200 Subject: php-akamai-open-edgegrid-auth: add backport stuff --- composer.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4eb368f --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "akamai-open/edgegrid-auth", + "description": "Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client_Auth.html", + "keywords": ["akamai", "open", "edgegrid", "authentication"], + "type": "library", + "license": "Apache-2.0", + "homepage": "https://github.com/akamai-open/AkamaiOPEN-edgegrid-php", + "authors": [ + { + "name": "Davey Shafik", + "email": "dshafik@akamai.com" + } + ], + "require": { + "php": ">=5.3" + }, + "require-dev": { + "phpunit/phpunit": "~4.7", + "squizlabs/php_codesniffer": "^2.3", + "friendsofphp/php-cs-fixer": "^1.9", + "kherge/box": "^2.5" + }, + "suggest": { + "akamai-open/edgegrid-client": "Provide a fully featured HTTP client & CLI pre-configured with EdgeGrid authentication. (PHP 5.5+)" + }, + "autoload": { + "psr-4": { + "Akamai\\Open\\EdgeGrid\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Akamai\\Open\\EdgeGrid\\Tests\\": "tests" + } + }, + "config": { + "platform": { + "php": "5.3.6" + } + } +} -- cgit