summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 7abc54b22747a8e071ff35e56f31acc275c64828 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
    "name": "php-opencloud/openstack",
    "description": "PHP SDK for OpenStack APIs. Supports BlockStorage, Compute, Identity, Images, Networking and Metric Gnocchi",
    "keywords": [
        "php",
        "openstack",
        "api",
        "sdk"
    ],
    "homepage": "https://github.com/php-opencloud/openstack",
    "license": "Apache-2.0",
    "authors": [
        {
            "name": "Jamie Hannaford",
            "email": "jamie.hannaford@rackspace.com",
            "homepage" : "https://github.com/jamiehannaford"
        },
        {
            "name": "Ha Phan",
            "email": "thanhha.work@gmail.com",
            "homepage" : "https://github.com/haphan"
        }
    ],
    "autoload": {
        "psr-4": {
            "OpenStack\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "OpenStack\\Test\\": "tests/unit/",
            "OpenStack\\Integration\\": "tests/integration/"
        }
    },
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/php-opencloud/Sami"
        }
    ],
    "require": {
        "php": "~7.0",
        "guzzlehttp/guzzle": "~6.1",
        "justinrainbow/json-schema": "~5.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.5",
        "sami/sami": "dev-master",
        "psr/log": "^1.0",
        "satooshi/php-coveralls": "^2.0",
        "jakub-onderka/php-parallel-lint": "^1.0",
        "friendsofphp/php-cs-fixer": "^2.9"
    },
    "extra": {
        "branch-alias": {
           "dev-master": "3.0-dev"
        }
    }
}