123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "doctrine/doctrine-migrations-bundle",
- "type": "symfony-bundle",
- "description": "Symfony DoctrineMigrationsBundle",
- "keywords": ["DBAL", "Migrations", "Schema"],
- "homepage": "https://www.doctrine-project.org",
- "license": "MIT",
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Doctrine Project",
- "homepage": "http://www.doctrine-project.org"
- },
- {
- "name": "Symfony Community",
- "homepage": "http://symfony.com/contributors"
- }
- ],
- "require": {
- "php": "^7.2",
- "symfony/framework-bundle": "~3.4|~4.0|~5.0",
- "doctrine/doctrine-bundle": "~1.0|~2.0",
- "doctrine/migrations": "~3.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.4|^7.0",
- "doctrine/coding-standard": "^5.0",
- "phpstan/phpstan": "^0.11",
- "phpstan/phpstan-deprecation-rules": "^0.11",
- "phpstan/phpstan-phpunit": "^0.11",
- "phpstan/phpstan-strict-rules": "^0.11",
- "doctrine/orm": "^2.6"
- },
- "autoload": {
- "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\": "" },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "autoload-dev": {
- "psr-4": { "Doctrine\\Bundle\\MigrationsBundle\\Tests\\": "Tests" }
- },
- "config": {
- "platform": {
- "php": "7.2.5"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
- }
- }
- }
|