41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"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",
|
|
"homepage": "http://robmorgan.id.au",
|
|
"role": "Lead Developer"
|
|
}, {
|
|
"name": "Woody Gilk",
|
|
"email": "woody.gilk@gmail.com",
|
|
"homepage": "http://shadowhand.me",
|
|
"role": "Developer"
|
|
}],
|
|
"require": {
|
|
"php": ">=5.3.2",
|
|
"symfony/console": "~2.7",
|
|
"symfony/config": "~2.7",
|
|
"symfony/yaml": "~2.7"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "3.7.*",
|
|
"squizlabs/php_codesniffer": "dev-phpcs-fixer"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Phinx\\": "src/Phinx"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Test\\Phinx\\": "tests/Phinx"
|
|
}
|
|
},
|
|
"bin": ["bin/phinx"]
|
|
}
|