summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-09-27 11:58:35 +0200
committerRemi Collet <fedora@famillecollet.com>2016-09-27 11:58:35 +0200
commita8e74ff4a4c39fc813ffcc492a1e57931c6395c5 (patch)
treee9ff12a41a728c875309be0aacb80abe6f0b2b38 /composer.json
phinx: 0.6.4 (new package)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..eaf7473
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,43 @@
+{
+ "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": "https://robmorgan.id.au",
+ "role": "Lead Developer"
+ }, {
+ "name": "Woody Gilk",
+ "email": "woody.gilk@gmail.com",
+ "homepage": "http://shadowhand.me",
+ "role": "Developer"
+ }, {
+ "name": "Richard Quadling",
+ "email": "rquadling@gmail.com",
+ "role": "Developer"
+ }],
+ "require": {
+ "php": ">=5.4",
+ "symfony/console": "~2.8|~3.0",
+ "symfony/config": "~2.8|~3.0",
+ "symfony/yaml": "~2.8|~3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.26|^5.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Phinx\\": "src/Phinx"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Test\\Phinx\\": "tests/Phinx"
+ }
+ },
+ "bin": ["bin/phinx"]
+}