├── Makefile ├── behat.yml ├── composer.json ├── phpunit.xml.dist ├── src ├── CmfResourceRestBundle.php ├── Controller │ └── ResourceController.php ├── DependencyInjection │ ├── CmfResourceRestExtension.php │ └── Configuration.php ├── Registry │ └── PayloadAliasRegistry.php ├── Resources │ ├── config │ │ ├── resource-rest.xml │ │ ├── routing.yml │ │ ├── schema │ │ │ └── resource-rest.xsd │ │ ├── security.xml │ │ └── serializer.xml │ └── meta │ │ └── LICENSE ├── Security │ └── ResourcePathVoter.php └── Serializer │ └── Jms │ ├── EventSubscriber │ ├── PhpcrNodeSubscriber.php │ └── ResourceSubscriber.php │ └── Handler │ ├── PhpcrNodeHandler.php │ └── ResourceHandler.php └── tests ├── Features ├── Context │ └── ResourceContext.php ├── nesting.feature ├── resource_api_filesystem.feature ├── resource_api_phpcr.feature ├── resource_api_phpcr_odm.feature └── security.feature ├── Fixtures └── App │ ├── Description │ └── DummyEnhancer.php │ ├── Document │ └── Article.php │ ├── Kernel.php │ ├── Resources │ └── views │ │ └── snippets │ │ └── snippet1.html │ ├── Security │ └── ResourceVoter.php │ └── config │ ├── bundles.php │ ├── config.php │ └── routing.php └── Unit ├── DependencyInjection ├── CmfResourceRestExtensionTest.php ├── ConfigurationTest.php └── fixtures │ ├── config.xml │ └── config.yml ├── Registry └── PayloadAliasRegistryTest.php ├── Security └── ResourcePathVoterTest.php └── Serializer └── Jms ├── EventSubscriber └── PhpcrNodeSubscriberTest.php └── Handler ├── PhpcrNodeHandlerTest.php └── ResourceHandlerTest.php /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/Makefile -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/behat.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CmfResourceRestBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/CmfResourceRestBundle.php -------------------------------------------------------------------------------- /src/Controller/ResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Controller/ResourceController.php -------------------------------------------------------------------------------- /src/DependencyInjection/CmfResourceRestExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/DependencyInjection/CmfResourceRestExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Registry/PayloadAliasRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Registry/PayloadAliasRegistry.php -------------------------------------------------------------------------------- /src/Resources/config/resource-rest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/config/resource-rest.xml -------------------------------------------------------------------------------- /src/Resources/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/config/routing.yml -------------------------------------------------------------------------------- /src/Resources/config/schema/resource-rest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/config/schema/resource-rest.xsd -------------------------------------------------------------------------------- /src/Resources/config/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/config/security.xml -------------------------------------------------------------------------------- /src/Resources/config/serializer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/config/serializer.xml -------------------------------------------------------------------------------- /src/Resources/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Resources/meta/LICENSE -------------------------------------------------------------------------------- /src/Security/ResourcePathVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Security/ResourcePathVoter.php -------------------------------------------------------------------------------- /src/Serializer/Jms/EventSubscriber/PhpcrNodeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Serializer/Jms/EventSubscriber/PhpcrNodeSubscriber.php -------------------------------------------------------------------------------- /src/Serializer/Jms/EventSubscriber/ResourceSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Serializer/Jms/EventSubscriber/ResourceSubscriber.php -------------------------------------------------------------------------------- /src/Serializer/Jms/Handler/PhpcrNodeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Serializer/Jms/Handler/PhpcrNodeHandler.php -------------------------------------------------------------------------------- /src/Serializer/Jms/Handler/ResourceHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/src/Serializer/Jms/Handler/ResourceHandler.php -------------------------------------------------------------------------------- /tests/Features/Context/ResourceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/Context/ResourceContext.php -------------------------------------------------------------------------------- /tests/Features/nesting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/nesting.feature -------------------------------------------------------------------------------- /tests/Features/resource_api_filesystem.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/resource_api_filesystem.feature -------------------------------------------------------------------------------- /tests/Features/resource_api_phpcr.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/resource_api_phpcr.feature -------------------------------------------------------------------------------- /tests/Features/resource_api_phpcr_odm.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/resource_api_phpcr_odm.feature -------------------------------------------------------------------------------- /tests/Features/security.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Features/security.feature -------------------------------------------------------------------------------- /tests/Fixtures/App/Description/DummyEnhancer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/Description/DummyEnhancer.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Document/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/Document/Article.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/Kernel.php -------------------------------------------------------------------------------- /tests/Fixtures/App/Resources/views/snippets/snippet1.html: -------------------------------------------------------------------------------- 1 |

Snippet 1

-------------------------------------------------------------------------------- /tests/Fixtures/App/Security/ResourceVoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/Security/ResourceVoter.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/config/bundles.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/config/config.php -------------------------------------------------------------------------------- /tests/Fixtures/App/config/routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Fixtures/App/config/routing.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/CmfResourceRestExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/DependencyInjection/CmfResourceRestExtensionTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/fixtures/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/DependencyInjection/fixtures/config.xml -------------------------------------------------------------------------------- /tests/Unit/DependencyInjection/fixtures/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/DependencyInjection/fixtures/config.yml -------------------------------------------------------------------------------- /tests/Unit/Registry/PayloadAliasRegistryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/Registry/PayloadAliasRegistryTest.php -------------------------------------------------------------------------------- /tests/Unit/Security/ResourcePathVoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/Security/ResourcePathVoterTest.php -------------------------------------------------------------------------------- /tests/Unit/Serializer/Jms/EventSubscriber/PhpcrNodeSubscriberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/Serializer/Jms/EventSubscriber/PhpcrNodeSubscriberTest.php -------------------------------------------------------------------------------- /tests/Unit/Serializer/Jms/Handler/PhpcrNodeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/Serializer/Jms/Handler/PhpcrNodeHandlerTest.php -------------------------------------------------------------------------------- /tests/Unit/Serializer/Jms/Handler/ResourceHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/resource-rest-bundle/HEAD/tests/Unit/Serializer/Jms/Handler/ResourceHandlerTest.php --------------------------------------------------------------------------------