├── DflydevEmbeddedComposerBundle.php ├── Command ├── UpdateCommand.php ├── InstallCommand.php └── DumpAutoloadCommand.php ├── LICENSE └── composer.json /DflydevEmbeddedComposerBundle.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | class DflydevEmbeddedComposerBundle extends Bundle 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /Command/UpdateCommand.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | class UpdateCommand extends BaseUpdateCommand 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /Command/InstallCommand.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | class InstallCommand extends BaseInstallCommand 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /Command/DumpAutoloadCommand.php: -------------------------------------------------------------------------------- 1 | 20 | */ 21 | class DumpAutoloadCommand extends BaseDumpAutoloadCommand 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012-2014 Dragonfly Development Inc. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dflydev/embedded-composer-bundle", 3 | "description": "Embed Composer as a Symfony Bundle", 4 | "type": "symfony-bundle", 5 | "keywords": ["embedded", "composer", "extensibility", "bundle"], 6 | "license": "MIT", 7 | "authors": [ 8 | { 9 | "name": "Dragonfly Development Inc.", 10 | "email": "info@dflydev.com", 11 | "homepage": "http://dflydev.com" 12 | }, 13 | { 14 | "name": "Beau Simensen", 15 | "email": "beau@dflydev.com", 16 | "homepage": "http://beausimensen.com" 17 | } 18 | ], 19 | "require": { 20 | "php": ">=5.3.2", 21 | "dflydev/embedded-composer-console": "1.*@dev", 22 | "dflydev/embedded-composer-core": "1.*@dev", 23 | "symfony/http-kernel": "~2.1", 24 | 25 | "composer/composer": "@dev", 26 | "symfony/console": "~2.3@dev" 27 | }, 28 | "autoload": { 29 | "psr-0": { "Dflydev\\EmbeddedComposer\\Bundle": "" } 30 | }, 31 | "target-dir": "Dflydev/EmbeddedComposer/Bundle", 32 | "extra": { 33 | "branch-alias": { 34 | "dev-master": "1.0-dev" 35 | } 36 | } 37 | } 38 | --------------------------------------------------------------------------------