summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2019-01-03 14:10:26 +0100
committerRemi Collet <remi@remirepo.net>2019-01-03 14:10:26 +0100
commit28ef1c9cfa570021547a286f3a2224a7142c8551 (patch)
treec534d0fb85a0e46705ce8d39a588326c8eebc119 /composer.json
new package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..3217b5c
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,51 @@
+{
+ "name": "doctrine/migrations",
+ "type": "library",
+ "description": "Database Schema migrations using Doctrine DBAL",
+ "keywords": ["migrations", "database"],
+ "homepage": "https://www.doctrine-project.org/projects/migrations.html",
+ "license": "MIT",
+ "authors": [
+ {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
+ {"name": "Jonathan Wage", "email": "jonwage@gmail.com"},
+ {"name": "Michael Simonson", "email": "contact@mikesimonson.com" }
+ ],
+ "require": {
+ "php": "^7.1",
+ "doctrine/dbal": "~2.6",
+ "symfony/console": "~3.3|^4.0",
+ "ocramius/proxy-manager": "^1.0|^2.0"
+ },
+ "require-dev": {
+ "doctrine/orm": "~2.5",
+ "symfony/yaml": "~3.3|^4.0",
+ "phpunit/phpunit": "~7.0",
+ "doctrine/coding-standard": "^1.0",
+ "jdorn/sql-formatter": "~1.1",
+ "mikey179/vfsStream": "^1.6",
+ "squizlabs/php_codesniffer": "^3.0"
+ },
+ "suggest": {
+ "jdorn/sql-formatter": "Allows to generate formatted SQL with the diff command.",
+ "symfony/yaml": "Allows the use of yaml for migration configuration files."
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\DBAL\\Migrations\\": "lib/Doctrine/DBAL/Migrations",
+ "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "Doctrine\\DBAL\\Migrations\\Tests\\": "tests/Doctrine/DBAL/Migrations/Tests"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "v1.8.x-dev"
+ }
+ },
+ "bin": [
+ "bin/doctrine-migrations"
+ ]
+}