├── .travis.yml ├── LICENSE ├── README.md ├── bin └── dddtool ├── composer.json ├── config └── config.php ├── demo ├── demo.config.php ├── primitives │ └── Simple │ │ ├── Simple.stub.php │ │ └── SimpleTest.stub.php ├── src │ └── domain │ │ └── Account │ │ └── Logout │ │ ├── Logout.php │ │ └── LogoutHandler.php └── tests │ └── domain │ └── Account │ └── Logout │ ├── LogoutHandlerTest.php │ └── LogoutTest.php ├── phpunit.xml ├── resources └── Primitives │ └── Simple │ ├── Simple.stub.php │ └── SimpleTest.stub.php ├── src ├── app │ └── Input │ │ └── Console │ │ └── Commands │ │ └── Generate.php └── domain │ ├── Generator.php │ └── VO │ ├── FQCN.php │ ├── Layer.php │ └── Primitive.php └── tests ├── ConsoleGeneratorTest.php ├── GeneratorTest.php ├── VO ├── FQCNTest.php ├── LayerTest.php └── PrimitiveTest.php └── resources ├── console.config.php └── stubs ├── SimpleStub.stub.php └── SimpleTestStub.stub.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/README.md -------------------------------------------------------------------------------- /bin/dddtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/bin/dddtool -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/config/config.php -------------------------------------------------------------------------------- /demo/demo.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/demo.config.php -------------------------------------------------------------------------------- /demo/primitives/Simple/Simple.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/primitives/Simple/Simple.stub.php -------------------------------------------------------------------------------- /demo/primitives/Simple/SimpleTest.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/primitives/Simple/SimpleTest.stub.php -------------------------------------------------------------------------------- /demo/src/domain/Account/Logout/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/src/domain/Account/Logout/Logout.php -------------------------------------------------------------------------------- /demo/src/domain/Account/Logout/LogoutHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/src/domain/Account/Logout/LogoutHandler.php -------------------------------------------------------------------------------- /demo/tests/domain/Account/Logout/LogoutHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/tests/domain/Account/Logout/LogoutHandlerTest.php -------------------------------------------------------------------------------- /demo/tests/domain/Account/Logout/LogoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/demo/tests/domain/Account/Logout/LogoutTest.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/Primitives/Simple/Simple.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/resources/Primitives/Simple/Simple.stub.php -------------------------------------------------------------------------------- /resources/Primitives/Simple/SimpleTest.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/resources/Primitives/Simple/SimpleTest.stub.php -------------------------------------------------------------------------------- /src/app/Input/Console/Commands/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/src/app/Input/Console/Commands/Generate.php -------------------------------------------------------------------------------- /src/domain/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/src/domain/Generator.php -------------------------------------------------------------------------------- /src/domain/VO/FQCN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/src/domain/VO/FQCN.php -------------------------------------------------------------------------------- /src/domain/VO/Layer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/src/domain/VO/Layer.php -------------------------------------------------------------------------------- /src/domain/VO/Primitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/src/domain/VO/Primitive.php -------------------------------------------------------------------------------- /tests/ConsoleGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/ConsoleGeneratorTest.php -------------------------------------------------------------------------------- /tests/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/GeneratorTest.php -------------------------------------------------------------------------------- /tests/VO/FQCNTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/VO/FQCNTest.php -------------------------------------------------------------------------------- /tests/VO/LayerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/VO/LayerTest.php -------------------------------------------------------------------------------- /tests/VO/PrimitiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/VO/PrimitiveTest.php -------------------------------------------------------------------------------- /tests/resources/console.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/resources/console.config.php -------------------------------------------------------------------------------- /tests/resources/stubs/SimpleStub.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/resources/stubs/SimpleStub.stub.php -------------------------------------------------------------------------------- /tests/resources/stubs/SimpleTestStub.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lezhnev74/ddd-generator/HEAD/tests/resources/stubs/SimpleTestStub.stub.php --------------------------------------------------------------------------------