~ballot/wordpress/openstack-objectstorage-breaking-insight

« back to all changes in this revision

Viewing changes to vendor/sebastian/comparator/composer.json

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    "name": "sebastian/comparator",
 
3
    "description": "Provides the functionality to compare PHP values for equality",
 
4
    "keywords": ["comparator","compare","equality"],
 
5
    "homepage": "http://www.github.com/sebastianbergmann/comparator",
 
6
    "license": "BSD-3-Clause",
 
7
    "authors": [
 
8
        {
 
9
            "name": "Sebastian Bergmann",
 
10
            "email": "sebastian@phpunit.de"
 
11
        },
 
12
        {
 
13
            "name": "Jeff Welch",
 
14
            "email": "whatthejeff@gmail.com"
 
15
        },
 
16
        {
 
17
            "name": "Volker Dusch",
 
18
            "email": "github@wallbash.com"
 
19
        },
 
20
        {
 
21
            "name": "Bernhard Schussek",
 
22
            "email": "bschussek@2bepublished.at"
 
23
        }
 
24
    ],
 
25
    "require": {
 
26
        "php": ">=5.3.3",
 
27
        "sebastian/diff": "~1.2",
 
28
        "sebastian/exporter": "~1.2"
 
29
    },
 
30
    "require-dev": {
 
31
        "phpunit/phpunit": "~4.4"
 
32
    },
 
33
    "autoload": {
 
34
        "classmap": [
 
35
            "src/"
 
36
        ]
 
37
    },
 
38
    "extra": {
 
39
        "branch-alias": {
 
40
            "dev-master": "1.1.x-dev"
 
41
        }
 
42
    }
 
43
}
 
44