Welcome to mirror list, hosted at ThFree Co, Russian Federation.

composer.json « openstack « php-opencloud - github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2a8d9c3242aed0732129b63503e3a30d39e5fed (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
{
    "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/"
        }
    },
    "require": {
        "php": "^7.2.5",
        "guzzlehttp/guzzle": "^7.0",
        "guzzlehttp/uri-template": "0.2",
        "justinrainbow/json-schema": "^5.2"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.5",
        "psr/log": "^1.0",
        "php-coveralls/php-coveralls": "^2.0",
        "jakub-onderka/php-parallel-lint": "^1.0",
        "friendsofphp/php-cs-fixer": "^2.13"
    },
    "extra": {
        "branch-alias": {
           "dev-master": "3.0-dev"
        }
    }
}