12345678910111213141516171819202122232425262728 |
- {
- "name": "doctrine/migrations",
- "type": "library",
- "description": "Database Schema migrations using Doctrine DBAL",
- "keywords": ["migrations", "database"],
- "homepage": "http://www.doctrine-project.org",
- "license": "LGPL",
- "authors": [
- {"name": "Benjamin Eberlei", "email": "kontakt@beberlei.de"},
- {"name": "Jonathan Wage", "email": "jonwage@gmail.com"}
- ],
- "require": {
- "php": ">=5.3.2",
- "doctrine/dbal": ">=2.0,<2.5.x-dev"
- },
- "require-dev": {
- "symfony/console": "2.*",
- "symfony/yaml": "2.*"
- },
- "suggest": {
- "symfony/console": "to run the migration from the console"
- },
- "autoload": {
- "psr-0": {
- "Doctrine\\DBAL\\Migrations": "lib"
- }
- }
- }
|