├── .gitignore ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── behat.yml ├── composer.json ├── console ├── phpunit.xml.dist ├── src ├── Context │ ├── AliceContextInterface.php │ ├── Doctrine │ │ ├── AbstractAliceContext.php │ │ ├── AliceODMContext.php │ │ ├── AliceORMContext.php │ │ └── AlicePHPCRContext.php │ └── Initializer │ │ └── AliceContextInitializer.php ├── Extension.php └── Resources │ └── config │ └── services.xml └── tests ├── ExtensionTest.php ├── Features ├── ODM │ └── loader.feature ├── ORM │ └── loader.feature ├── bootstrap │ ├── ODMFeatureContext.php │ └── ORMFeatureContext.php └── fixtures │ ├── ODM │ ├── another_dummy.yml │ └── one_another_dummy.yml │ └── ORM │ ├── another_dummy.yml │ └── one_another_dummy.yml └── Functional ├── AppKernel.php ├── Bundle └── TestBundle │ ├── DataFixtures │ ├── ODM │ │ ├── dummy.yml │ │ └── one_another_dummy.yml │ └── ORM │ │ ├── dummy.yml │ │ └── one_another_dummy.yml │ ├── Document │ ├── AnotherDummy.php │ └── Dummy.php │ ├── Entity │ ├── AnotherDummy.php │ └── Dummy.php │ └── TestBundle.php ├── autoload.php └── config ├── config.yml └── routing.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/README.md -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/behat.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/composer.json -------------------------------------------------------------------------------- /console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/console -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Context/AliceContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/AliceContextInterface.php -------------------------------------------------------------------------------- /src/Context/Doctrine/AbstractAliceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/Doctrine/AbstractAliceContext.php -------------------------------------------------------------------------------- /src/Context/Doctrine/AliceODMContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/Doctrine/AliceODMContext.php -------------------------------------------------------------------------------- /src/Context/Doctrine/AliceORMContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/Doctrine/AliceORMContext.php -------------------------------------------------------------------------------- /src/Context/Doctrine/AlicePHPCRContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/Doctrine/AlicePHPCRContext.php -------------------------------------------------------------------------------- /src/Context/Initializer/AliceContextInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Context/Initializer/AliceContextInitializer.php -------------------------------------------------------------------------------- /src/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Extension.php -------------------------------------------------------------------------------- /src/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/src/Resources/config/services.xml -------------------------------------------------------------------------------- /tests/ExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/ExtensionTest.php -------------------------------------------------------------------------------- /tests/Features/ODM/loader.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/ODM/loader.feature -------------------------------------------------------------------------------- /tests/Features/ORM/loader.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/ORM/loader.feature -------------------------------------------------------------------------------- /tests/Features/bootstrap/ODMFeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/bootstrap/ODMFeatureContext.php -------------------------------------------------------------------------------- /tests/Features/bootstrap/ORMFeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/bootstrap/ORMFeatureContext.php -------------------------------------------------------------------------------- /tests/Features/fixtures/ODM/another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/fixtures/ODM/another_dummy.yml -------------------------------------------------------------------------------- /tests/Features/fixtures/ODM/one_another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/fixtures/ODM/one_another_dummy.yml -------------------------------------------------------------------------------- /tests/Features/fixtures/ORM/another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/fixtures/ORM/another_dummy.yml -------------------------------------------------------------------------------- /tests/Features/fixtures/ORM/one_another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Features/fixtures/ORM/one_another_dummy.yml -------------------------------------------------------------------------------- /tests/Functional/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/AppKernel.php -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/DataFixtures/ODM/dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/DataFixtures/ODM/dummy.yml -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/DataFixtures/ODM/one_another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/DataFixtures/ODM/one_another_dummy.yml -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/DataFixtures/ORM/dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/DataFixtures/ORM/dummy.yml -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/DataFixtures/ORM/one_another_dummy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/DataFixtures/ORM/one_another_dummy.yml -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/Document/AnotherDummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/Document/AnotherDummy.php -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/Document/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/Document/Dummy.php -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/Entity/AnotherDummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/Entity/AnotherDummy.php -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/Entity/Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/Entity/Dummy.php -------------------------------------------------------------------------------- /tests/Functional/Bundle/TestBundle/TestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/Bundle/TestBundle/TestBundle.php -------------------------------------------------------------------------------- /tests/Functional/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/autoload.php -------------------------------------------------------------------------------- /tests/Functional/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/config/config.yml -------------------------------------------------------------------------------- /tests/Functional/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theofidry/AliceBundleExtension/HEAD/tests/Functional/config/routing.yml --------------------------------------------------------------------------------