Blame view

vendor/robmorgan/phinx/composer.json 1.16 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
{
    "name": "robmorgan/phinx",
    "type": "library",
    "description": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app.",
    "keywords": ["phinx", "migrations", "database", "db", "database migrations"],
    "homepage": "https://phinx.org",
    "license": "MIT",
    "authors": [{
        "name": "Rob Morgan",
        "email": "robbym@gmail.com",
c3f2e5a1   Thibaud Ajas   MAJ DE PHP v5.6 -...
11
        "homepage": "https://robmorgan.id.au",
6c4edfa3   Alexandre   First Commit LabI...
12
13
14
15
16
17
        "role": "Lead Developer"
    }, {
        "name": "Woody Gilk",
        "email": "woody.gilk@gmail.com",
        "homepage": "http://shadowhand.me",
        "role": "Developer"
c3f2e5a1   Thibaud Ajas   MAJ DE PHP v5.6 -...
18
19
20
21
    }, {
        "name": "Richard Quadling",
        "email": "rquadling@gmail.com",
        "role": "Developer"
6c4edfa3   Alexandre   First Commit LabI...
22
23
24
25
26
27
28
29
    }],
    "require": {
        "php": ">=5.4",
        "symfony/console": "~2.8|~3.0",
        "symfony/config": "~2.8|~3.0",
        "symfony/yaml": "~2.8|~3.0"
    },
    "require-dev": {
c3f2e5a1   Thibaud Ajas   MAJ DE PHP v5.6 -...
30
        "phpunit/phpunit": "^4.8.26|^5.0"
6c4edfa3   Alexandre   First Commit LabI...
31
32
33
34
35
36
37
38
39
40
41
42
43
    },
    "autoload": {
        "psr-4": {
            "Phinx\\": "src/Phinx"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Test\\Phinx\\": "tests/Phinx"
        }
    },
    "bin": ["bin/phinx"]
}