summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-07-24 06:58:28 +0200
committerRemi Collet <fedora@famillecollet.com>2016-07-24 06:58:28 +0200
commitbe0aeccf5332856624ca4fe75d307a7a53cd132b (patch)
treed0c5a78316f5359fed0d79bddbc1437311444431 /composer.json
parentcece44896f27f01c5ba20e46b517dc88e49a6c45 (diff)
php-akamai-open-edgegrid-client: 0.4.5 (backported from Fedora)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..2baf380
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,42 @@
+{
+ "name": "akamai-open/edgegrid-client",
+ "description": "Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client_Auth.html",
+ "keywords": ["akamai", "open", "edgegrid"],
+ "type": "library",
+ "license": "Apache-2.0",
+ "homepage": "https://github.com/akamai-open/edgegrid-auth-php",
+ "authors": [
+ {
+ "name": "Davey Shafik",
+ "email": "dshafik@akamai.com"
+ }
+ ],
+ "require": {
+ "php": ">=5.5",
+ "guzzlehttp/guzzle": "~6.0",
+ "psr/log": "^1.0",
+ "monolog/monolog": "^1.15",
+ "League/CLImate": "~3.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.7",
+ "theseer/phpdox": "~0.8",
+ "phploc/phploc": "^2.1",
+ "squizlabs/php_codesniffer": "^2.3",
+ "fabpot/php-cs-fixer": "^1.9",
+ "kherge/box": "^2.5"
+ },
+ "autoload": {
+ "psr-4": {
+ "Akamai\\Open\\EdgeGrid\\": "src/",
+ "Monolog\\": "src/Monolog"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Akamai\\Open\\EdgeGrid\\Tests\\": "tests",
+ "GuzzleHttp\\Tests\\": "vendor/guzzlehttp/guzzle/tests",
+ "Monolog\\": "tests/Monolog"
+ }
+ }
+}