From 6e554b0445446e2c215ac15e2d1786899aba6a0d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 24 Mar 2017 16:09:59 -0700 Subject: [PATCH] moved aliases directly into the manifest files --- doctrine/doctrine-bundle/manifest.json | 3 ++- javiereguiluz/easyadmin-bundle/manifest.json | 3 ++- map.json | 27 -------------------- sensiolabs/security-checker/manifest.json | 3 ++- symfony/console/manifest.json | 3 ++- symfony/monolog-bundle/manifest.json | 3 ++- symfony/requirements-checker/manifest.json | 3 ++- symfony/routing/manifest.json | 3 +++ symfony/serializer/manifest.json | 3 +++ symfony/swiftmailer-bundle/manifest.json | 3 ++- symfony/translation/manifest.json | 3 +++ symfony/twig-bundle/manifest.json | 3 ++- symfony/web-profiler-bundle/manifest.json | 3 ++- symfony/web-server-bundle/manifest.json | 3 ++- 14 files changed, 29 insertions(+), 37 deletions(-) delete mode 100644 map.json create mode 100644 symfony/routing/manifest.json create mode 100644 symfony/serializer/manifest.json create mode 100644 symfony/translation/manifest.json diff --git a/doctrine/doctrine-bundle/manifest.json b/doctrine/doctrine-bundle/manifest.json index f9900e53..41f9179e 100644 --- a/doctrine/doctrine-bundle/manifest.json +++ b/doctrine/doctrine-bundle/manifest.json @@ -13,5 +13,6 @@ "DB_NAME": "symfony", "DB_USER": "root", "DB_PASSWORD": "" - } + }, + "aliases": ["doctrine", "orm"] } diff --git a/javiereguiluz/easyadmin-bundle/manifest.json b/javiereguiluz/easyadmin-bundle/manifest.json index 69ffbc84..10a39605 100644 --- a/javiereguiluz/easyadmin-bundle/manifest.json +++ b/javiereguiluz/easyadmin-bundle/manifest.json @@ -4,5 +4,6 @@ }, "copy-from-recipe": { "etc/": "%ETC_DIR%/" - } + }, + "aliases": ["admin-gen", "admin-generator", "admin"] } diff --git a/map.json b/map.json deleted file mode 100644 index 05d8c021..00000000 --- a/map.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "admin-gen": "admin", - "admin-generator": "admin", - "admin": "javiereguiluz/easyadmin-bundle", - "cli": "console", - "doctrine": "doctrine/doctrine-bundle", - "logging": "log", - "log": "monolog-bundle", - "mailer": "swiftmailer-bundle", - "orm": "doctrine/doctrine-bundle", - "profiler": "web-profiler-bundle", - "template": "twig", - "templates": "twig", - "templating": "twig", - "translator": "translation", - "serialization": "serializer", - "logs": "log", - "logging": "log", - "req-checker": "requirements-checker", - "sec-checker": "security-checker", - "security-checker": "sensiolabs/security-checker", - "twig": "twig-bundle", - "orm": "doctrine", - "webserver": "server", - "web-server": "server", - "server": "web-server-bundle" -} diff --git a/sensiolabs/security-checker/manifest.json b/sensiolabs/security-checker/manifest.json index a1a5daa9..9ae535b3 100644 --- a/sensiolabs/security-checker/manifest.json +++ b/sensiolabs/security-checker/manifest.json @@ -4,5 +4,6 @@ }, "composer-scripts": { "vendor/bin/security-checker security:check": "php-script" - } + }, + "aliases": ["security-check", "security-checker", "sec-checker", "sec-check", "sec-checks"] } diff --git a/symfony/console/manifest.json b/symfony/console/manifest.json index 016e5b67..b0e9e1d4 100644 --- a/symfony/console/manifest.json +++ b/symfony/console/manifest.json @@ -1,5 +1,6 @@ { "copy-from-recipe": { "bin/": "%BIN_DIR%/" - } + }, + "aliases": ["cli"] } diff --git a/symfony/monolog-bundle/manifest.json b/symfony/monolog-bundle/manifest.json index 7d8c1d17..f9bf1b02 100644 --- a/symfony/monolog-bundle/manifest.json +++ b/symfony/monolog-bundle/manifest.json @@ -4,5 +4,6 @@ }, "copy-from-recipe": { "etc/": "%ETC_DIR%/" - } + }, + "aliases": ["log", "logging", "logs", "monolog"] } diff --git a/symfony/requirements-checker/manifest.json b/symfony/requirements-checker/manifest.json index 8de212a0..46e142d9 100644 --- a/symfony/requirements-checker/manifest.json +++ b/symfony/requirements-checker/manifest.json @@ -5,5 +5,6 @@ }, "composer-scripts": { "%BIN_DIR%/check.php": "php-script" - } + }, + "aliases": ["requirement-check", "requirement-checker", "req-checker", "req-check", "req-checks"] } diff --git a/symfony/routing/manifest.json b/symfony/routing/manifest.json new file mode 100644 index 00000000..89ac2759 --- /dev/null +++ b/symfony/routing/manifest.json @@ -0,0 +1,3 @@ +{ + "aliases": ["router"] +} diff --git a/symfony/serializer/manifest.json b/symfony/serializer/manifest.json new file mode 100644 index 00000000..190c5f0e --- /dev/null +++ b/symfony/serializer/manifest.json @@ -0,0 +1,3 @@ +{ + "aliases": ["serialization"] +} diff --git a/symfony/swiftmailer-bundle/manifest.json b/symfony/swiftmailer-bundle/manifest.json index 70a8fc79..8df1ffb3 100644 --- a/symfony/swiftmailer-bundle/manifest.json +++ b/symfony/swiftmailer-bundle/manifest.json @@ -12,5 +12,6 @@ "MAILER_PORT": "25", "MAILER_USER": "", "MAILER_PASSWORD": "" - } + }, + "aliases": ["mailer", "mail"] } diff --git a/symfony/translation/manifest.json b/symfony/translation/manifest.json new file mode 100644 index 00000000..4839820a --- /dev/null +++ b/symfony/translation/manifest.json @@ -0,0 +1,3 @@ +{ + "aliases": ["translator"] +} diff --git a/symfony/twig-bundle/manifest.json b/symfony/twig-bundle/manifest.json index 90a471a1..6c677a90 100644 --- a/symfony/twig-bundle/manifest.json +++ b/symfony/twig-bundle/manifest.json @@ -5,5 +5,6 @@ "copy-from-recipe": { "etc/": "%ETC_DIR%/", "templates/": "templates/" - } + }, + "aliases": ["twig", "template", "templates", "templating"] } diff --git a/symfony/web-profiler-bundle/manifest.json b/symfony/web-profiler-bundle/manifest.json index 07279611..847d08fa 100644 --- a/symfony/web-profiler-bundle/manifest.json +++ b/symfony/web-profiler-bundle/manifest.json @@ -4,5 +4,6 @@ }, "copy-from-recipe": { "etc/": "%ETC_DIR%/" - } + }, + "aliases": ["profiler"] } diff --git a/symfony/web-server-bundle/manifest.json b/symfony/web-server-bundle/manifest.json index 28dbf44c..331a377e 100644 --- a/symfony/web-server-bundle/manifest.json +++ b/symfony/web-server-bundle/manifest.json @@ -4,5 +4,6 @@ }, "gitignore": [ ".web-server-pid" - ] + ], + "aliases": ["web-server", "server"] }