├── .codeclimate.yml ├── .gitignore ├── .travis.yml ├── Command ├── GenerateEntityCommand.php ├── GeneratorCommand.php ├── Helper │ ├── AssociationHelper.php │ ├── AssociationHelperInterface.php │ ├── EntityHelper.php │ ├── EntityHelperInterface.php │ ├── FieldHelper.php │ ├── FieldHelperInterface.php │ ├── MappingHelper.php │ └── StyleAwareInterface.php └── RegenerateEntityCommand.php ├── DependencyInjection ├── Configuration.php └── RemgGeneratorExtension.php ├── Exception ├── BundleNotFoundException.php ├── EntityNotFoundException.php └── MappingException.php ├── Generator ├── EntityGenerator.php └── EntityGeneratorInterface.php ├── LICENSE ├── Mapping ├── ClassMetadataFactory.php ├── ClassMetadataFactoryInterface.php ├── EntityBuilder.php ├── EntityBuilderInterface.php ├── EntityFactory.php ├── EntityFactoryInterface.php ├── MappingGuesser.php ├── MappingGuesserInterface.php ├── MappingValidator.php └── MappingValidatorInterface.php ├── Model ├── Association.php ├── AssociationInterface.php ├── Entity.php ├── EntityInterface.php ├── Field.php ├── FieldInterface.php ├── PrimaryKey.php └── PrimaryKeyInterface.php ├── README.md ├── RemgGeneratorBundle.php ├── Resources ├── config │ └── services.yml └── doc │ └── images │ └── remg_generator_example.png ├── Tests ├── Command │ ├── GenerateEntityCommandTest.php │ └── RegenerateEntityCommandTest.php ├── DependencyInjection │ └── RemgGeneratorExtensionTest.php ├── Fixtures │ ├── Mock │ │ ├── AssociationMock.php │ │ ├── BundleManagerMock.php │ │ ├── BundleMock.php │ │ ├── BundleNotFoundExceptionMock.php │ │ ├── ClassMetadataFactoryMock.php │ │ ├── ClassMetadataMock.php │ │ ├── EntityBuilderMock.php │ │ ├── EntityFactoryMock.php │ │ ├── EntityManagerMock.php │ │ ├── EntityMock.php │ │ ├── FieldMock.php │ │ ├── MappingExceptionMock.php │ │ └── PrimaryKeyMock.php │ └── Provider │ │ ├── AssociationProvider.php │ │ ├── BundleProvider.php │ │ ├── Data │ │ ├── AssociationBidirectional.yml │ │ ├── AssociationInversePropertyGuess.yml │ │ ├── AssociationTargetEntityGuess.yml │ │ ├── AssociationTypeGuess.yml │ │ ├── AssociationUnidirectional.yml │ │ ├── Bundle.yml │ │ ├── Entity.yml │ │ ├── EntityInput.yml │ │ ├── EntityInputInvalidName.yml │ │ ├── EntityInputPhpKeyword.yml │ │ ├── EntityInputPlatformKeyword.yml │ │ ├── Field.yml │ │ ├── FieldInputInvalidPhp.yml │ │ └── FieldTypeGuess.yml │ │ ├── EntityProvider.php │ │ └── FieldProvider.php ├── Generator │ └── EntityGeneratorTest.php ├── Mapping │ ├── ClassMetadataFactoryTest.php │ ├── EntityBuilderTest.php │ ├── EntityFactoryTest.php │ ├── MappingGuesserTest.php │ └── MappingValidatorTest.php ├── Model │ ├── AssociationTest.php │ ├── EntityTest.php │ ├── FieldTest.php │ └── PrimaryKeyTest.php ├── Tools │ └── BundleManagerTest.php └── app │ ├── AppKernel.php │ ├── CustomEntity.php │ ├── MappedSuperclass.php │ ├── autoload.php │ ├── config │ ├── config.yml │ ├── config_test.yml │ └── config_test_no_database.yml │ └── console ├── Tools ├── BundleManager.php └── BundleManagerInterface.php ├── composer.json ├── phpdoc.dist.xml └── phpunit.xml.dist /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Command/GenerateEntityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/GenerateEntityCommand.php -------------------------------------------------------------------------------- /Command/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/GeneratorCommand.php -------------------------------------------------------------------------------- /Command/Helper/AssociationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/AssociationHelper.php -------------------------------------------------------------------------------- /Command/Helper/AssociationHelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/AssociationHelperInterface.php -------------------------------------------------------------------------------- /Command/Helper/EntityHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/EntityHelper.php -------------------------------------------------------------------------------- /Command/Helper/EntityHelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/EntityHelperInterface.php -------------------------------------------------------------------------------- /Command/Helper/FieldHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/FieldHelper.php -------------------------------------------------------------------------------- /Command/Helper/FieldHelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/FieldHelperInterface.php -------------------------------------------------------------------------------- /Command/Helper/MappingHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/MappingHelper.php -------------------------------------------------------------------------------- /Command/Helper/StyleAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/Helper/StyleAwareInterface.php -------------------------------------------------------------------------------- /Command/RegenerateEntityCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Command/RegenerateEntityCommand.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/RemgGeneratorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/DependencyInjection/RemgGeneratorExtension.php -------------------------------------------------------------------------------- /Exception/BundleNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Exception/BundleNotFoundException.php -------------------------------------------------------------------------------- /Exception/EntityNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Exception/EntityNotFoundException.php -------------------------------------------------------------------------------- /Exception/MappingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Exception/MappingException.php -------------------------------------------------------------------------------- /Generator/EntityGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Generator/EntityGenerator.php -------------------------------------------------------------------------------- /Generator/EntityGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Generator/EntityGeneratorInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Mapping/ClassMetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/ClassMetadataFactory.php -------------------------------------------------------------------------------- /Mapping/ClassMetadataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/ClassMetadataFactoryInterface.php -------------------------------------------------------------------------------- /Mapping/EntityBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/EntityBuilder.php -------------------------------------------------------------------------------- /Mapping/EntityBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/EntityBuilderInterface.php -------------------------------------------------------------------------------- /Mapping/EntityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/EntityFactory.php -------------------------------------------------------------------------------- /Mapping/EntityFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/EntityFactoryInterface.php -------------------------------------------------------------------------------- /Mapping/MappingGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/MappingGuesser.php -------------------------------------------------------------------------------- /Mapping/MappingGuesserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/MappingGuesserInterface.php -------------------------------------------------------------------------------- /Mapping/MappingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/MappingValidator.php -------------------------------------------------------------------------------- /Mapping/MappingValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Mapping/MappingValidatorInterface.php -------------------------------------------------------------------------------- /Model/Association.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/Association.php -------------------------------------------------------------------------------- /Model/AssociationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/AssociationInterface.php -------------------------------------------------------------------------------- /Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/Entity.php -------------------------------------------------------------------------------- /Model/EntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/EntityInterface.php -------------------------------------------------------------------------------- /Model/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/Field.php -------------------------------------------------------------------------------- /Model/FieldInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/FieldInterface.php -------------------------------------------------------------------------------- /Model/PrimaryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/PrimaryKey.php -------------------------------------------------------------------------------- /Model/PrimaryKeyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Model/PrimaryKeyInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/README.md -------------------------------------------------------------------------------- /RemgGeneratorBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/RemgGeneratorBundle.php -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/doc/images/remg_generator_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Resources/doc/images/remg_generator_example.png -------------------------------------------------------------------------------- /Tests/Command/GenerateEntityCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Command/GenerateEntityCommandTest.php -------------------------------------------------------------------------------- /Tests/Command/RegenerateEntityCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Command/RegenerateEntityCommandTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/RemgGeneratorExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/DependencyInjection/RemgGeneratorExtensionTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/AssociationMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/AssociationMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/BundleManagerMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/BundleManagerMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/BundleMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/BundleMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/BundleNotFoundExceptionMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/BundleNotFoundExceptionMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/ClassMetadataFactoryMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/ClassMetadataFactoryMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/ClassMetadataMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/ClassMetadataMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/EntityBuilderMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/EntityBuilderMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/EntityFactoryMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/EntityFactoryMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/EntityManagerMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/EntityManagerMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/EntityMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/EntityMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/FieldMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/FieldMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/MappingExceptionMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/MappingExceptionMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Mock/PrimaryKeyMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Mock/PrimaryKeyMock.php -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/AssociationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/AssociationProvider.php -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/BundleProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/BundleProvider.php -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/AssociationBidirectional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/AssociationBidirectional.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/AssociationInversePropertyGuess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/AssociationInversePropertyGuess.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/AssociationTargetEntityGuess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/AssociationTargetEntityGuess.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/AssociationTypeGuess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/AssociationTypeGuess.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/AssociationUnidirectional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/AssociationUnidirectional.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/Bundle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/Bundle.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/Entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/Entity.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/EntityInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/EntityInput.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/EntityInputInvalidName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/EntityInputInvalidName.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/EntityInputPhpKeyword.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/EntityInputPhpKeyword.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/EntityInputPlatformKeyword.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/EntityInputPlatformKeyword.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/Field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/Field.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/FieldInputInvalidPhp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/FieldInputInvalidPhp.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/Data/FieldTypeGuess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/Data/FieldTypeGuess.yml -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/EntityProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/EntityProvider.php -------------------------------------------------------------------------------- /Tests/Fixtures/Provider/FieldProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Fixtures/Provider/FieldProvider.php -------------------------------------------------------------------------------- /Tests/Generator/EntityGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Generator/EntityGeneratorTest.php -------------------------------------------------------------------------------- /Tests/Mapping/ClassMetadataFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Mapping/ClassMetadataFactoryTest.php -------------------------------------------------------------------------------- /Tests/Mapping/EntityBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Mapping/EntityBuilderTest.php -------------------------------------------------------------------------------- /Tests/Mapping/EntityFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Mapping/EntityFactoryTest.php -------------------------------------------------------------------------------- /Tests/Mapping/MappingGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Mapping/MappingGuesserTest.php -------------------------------------------------------------------------------- /Tests/Mapping/MappingValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Mapping/MappingValidatorTest.php -------------------------------------------------------------------------------- /Tests/Model/AssociationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Model/AssociationTest.php -------------------------------------------------------------------------------- /Tests/Model/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Model/EntityTest.php -------------------------------------------------------------------------------- /Tests/Model/FieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Model/FieldTest.php -------------------------------------------------------------------------------- /Tests/Model/PrimaryKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Model/PrimaryKeyTest.php -------------------------------------------------------------------------------- /Tests/Tools/BundleManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/Tools/BundleManagerTest.php -------------------------------------------------------------------------------- /Tests/app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/AppKernel.php -------------------------------------------------------------------------------- /Tests/app/CustomEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/CustomEntity.php -------------------------------------------------------------------------------- /Tests/app/MappedSuperclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/MappedSuperclass.php -------------------------------------------------------------------------------- /Tests/app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/autoload.php -------------------------------------------------------------------------------- /Tests/app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/config/config.yml -------------------------------------------------------------------------------- /Tests/app/config/config_test.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config.yml } -------------------------------------------------------------------------------- /Tests/app/config/config_test_no_database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/config/config_test_no_database.yml -------------------------------------------------------------------------------- /Tests/app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tests/app/console -------------------------------------------------------------------------------- /Tools/BundleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tools/BundleManager.php -------------------------------------------------------------------------------- /Tools/BundleManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/Tools/BundleManagerInterface.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Remg/GeneratorBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------