diff --git a/composer.json b/composer.json index f025f4e..b050108 100644 --- a/composer.json +++ b/composer.json @@ -8,6 +8,7 @@ "symfony/flex": "^1.0", "symfony/framework-bundle": "^4.0", "symfony/lts": "^4@dev", + "symfony/maker-bundle": "^1.4", "symfony/orm-pack": "^1.0", "symfony/yaml": "^4.0" }, diff --git a/composer.lock b/composer.lock index 5bfac1b..62ee929 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "e1a92f763d28e5842211e46997b17eaa", + "content-hash": "74c35bf6543d060519ab59b48db35e07", "packages": [ { "name": "doctrine/annotations", @@ -977,6 +977,57 @@ ], "time": "2014-01-12T16:20:24+00:00" }, + { + "name": "nikic/php-parser", + "version": "v4.0.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3", + "reference": "e4a54fa90a5cd8e8dd3fb4099942681731c5cdd3", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.5 || ^7.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "time": "2018-03-25T17:35:16+00:00" + }, { "name": "ocramius/package-versions", "version": "1.3.0", @@ -2243,6 +2294,71 @@ "homepage": "https://symfony.com", "time": "2018-04-03T05:04:16+00:00" }, + { + "name": "symfony/maker-bundle", + "version": "v1.4.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/maker-bundle.git", + "reference": "eeb9027bbd3472f2d76455cc478b04bbb0eab932" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/eeb9027bbd3472f2d76455cc478b04bbb0eab932", + "reference": "eeb9027bbd3472f2d76455cc478b04bbb0eab932", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.2", + "nikic/php-parser": "^4.0", + "php": "^7.0.8", + "symfony/config": "^3.4|^4.0", + "symfony/console": "^3.4|^4.0", + "symfony/dependency-injection": "^3.4|^4.0", + "symfony/filesystem": "^3.4|^4.0", + "symfony/finder": "^3.4|^4.0", + "symfony/framework-bundle": "^3.4|^4.0", + "symfony/http-kernel": "^3.4|^4.0" + }, + "require-dev": { + "allocine/twigcs": "^3.0", + "doctrine/doctrine-bundle": "^1.8", + "doctrine/orm": "^2.3", + "friendsofphp/php-cs-fixer": "^2.8", + "symfony/phpunit-bridge": "^3.4|^4.0", + "symfony/process": "^3.4|^4.0" + }, + "type": "symfony-bundle", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Bundle\\MakerBundle\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.", + "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html", + "keywords": [ + "code generator", + "generator", + "scaffold", + "scaffolding" + ], + "time": "2018-05-02T13:20:32+00:00" + }, { "name": "symfony/orm-pack", "version": "v1.0.5", diff --git a/config/bundles.php b/config/bundles.php index 97e74f8..e20ca90 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -6,4 +6,5 @@ return [ Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true], Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], + Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], ]; diff --git a/symfony.lock b/symfony.lock index bb12a5a..3f0ab10 100644 --- a/symfony.lock +++ b/symfony.lock @@ -59,6 +59,9 @@ "jdorn/sql-formatter": { "version": "v1.2.17" }, + "nikic/php-parser": { + "version": "v4.0.1" + }, "ocramius/package-versions": { "version": "1.3.0" }, @@ -140,6 +143,15 @@ "symfony/lts": { "version": "4-dev" }, + "symfony/maker-bundle": { + "version": "1.0", + "recipe": { + "repo": "github.com/symfony/recipes", + "branch": "master", + "version": "1.0", + "ref": "fadbfe33303a76e25cb63401050439aa9b1a9c7f" + } + }, "symfony/orm-pack": { "version": "v1.0.5" },