├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── UPGRADE-2.2.md ├── UPGRADE.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ └── views │ │ └── base.html.twig ├── SymfonyRequirements.php ├── autoload.php ├── bootstrap.php.cache ├── cache │ └── .gitkeep ├── check.php ├── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.yml.dist │ ├── routing.yml │ ├── routing_dev.yml │ └── security.yml ├── console ├── logs │ └── .gitkeep └── phpunit.xml.dist ├── composer.json ├── composer.lock ├── note.json ├── src ├── .htaccess └── AppBundle │ ├── AppBundle.php │ ├── Controller │ └── NoteController.php │ ├── DependencyInjection │ └── AppExtension.php │ ├── EventListener │ └── ControllerListener.php │ ├── Form │ └── NoteType.php │ ├── Model │ ├── Event.php │ ├── Note.php │ └── NoteCollection.php │ ├── NoteManager.php │ ├── Resources │ ├── config │ │ ├── serializer │ │ │ ├── Model.Event.yml │ │ │ ├── Model.Note.yml │ │ │ └── Model.NoteCollection.yml │ │ ├── services.xml │ │ └── validation.yml │ ├── public │ │ ├── css │ │ │ └── demo.css │ │ └── images │ │ │ ├── blue-arrow.png │ │ │ ├── field-background.gif │ │ │ ├── logo.gif │ │ │ ├── search.png │ │ │ ├── welcome-configure.gif │ │ │ ├── welcome-demo.gif │ │ │ └── welcome-quick-tour.gif │ ├── translations │ │ ├── AppBundle.de.yml │ │ ├── AppBundle.en.yml │ │ └── AppBundle.es.yml │ └── views │ │ ├── Note │ │ ├── editNote.html.twig │ │ ├── editNotes.html.twig │ │ ├── getNote.html.twig │ │ ├── getNotes.html.twig │ │ └── newNote.html.twig │ │ └── layout.html.twig │ ├── Tests │ └── Controller │ │ └── NoteControllerTest.php │ └── Twig │ └── Extension │ └── DemoExtension.php └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/UPGRADE-2.2.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/SymfonyRequirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/SymfonyRequirements.php -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/bootstrap.php.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/bootstrap.php.cache -------------------------------------------------------------------------------- /app/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/check.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/console -------------------------------------------------------------------------------- /app/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/composer.lock -------------------------------------------------------------------------------- /note.json: -------------------------------------------------------------------------------- 1 | {"note":{"message":"foo"}} -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /src/AppBundle/AppBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/AppBundle.php -------------------------------------------------------------------------------- /src/AppBundle/Controller/NoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Controller/NoteController.php -------------------------------------------------------------------------------- /src/AppBundle/DependencyInjection/AppExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/DependencyInjection/AppExtension.php -------------------------------------------------------------------------------- /src/AppBundle/EventListener/ControllerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/EventListener/ControllerListener.php -------------------------------------------------------------------------------- /src/AppBundle/Form/NoteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Form/NoteType.php -------------------------------------------------------------------------------- /src/AppBundle/Model/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Model/Event.php -------------------------------------------------------------------------------- /src/AppBundle/Model/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Model/Note.php -------------------------------------------------------------------------------- /src/AppBundle/Model/NoteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Model/NoteCollection.php -------------------------------------------------------------------------------- /src/AppBundle/NoteManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/NoteManager.php -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/serializer/Model.Event.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/config/serializer/Model.Event.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/serializer/Model.Note.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/config/serializer/Model.Note.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/serializer/Model.NoteCollection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/config/serializer/Model.NoteCollection.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/AppBundle/Resources/config/validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/config/validation.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/css/demo.css -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/blue-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/blue-arrow.png -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/field-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/field-background.gif -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/logo.gif -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/search.png -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/welcome-configure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/welcome-configure.gif -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/welcome-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/welcome-demo.gif -------------------------------------------------------------------------------- /src/AppBundle/Resources/public/images/welcome-quick-tour.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/public/images/welcome-quick-tour.gif -------------------------------------------------------------------------------- /src/AppBundle/Resources/translations/AppBundle.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/translations/AppBundle.de.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/translations/AppBundle.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/translations/AppBundle.en.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/translations/AppBundle.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/translations/AppBundle.es.yml -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/Note/editNote.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/Note/editNote.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/Note/editNotes.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/Note/editNotes.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/Note/getNote.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/Note/getNote.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/Note/getNotes.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/Note/getNotes.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/Note/newNote.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/Note/newNote.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/AppBundle/Tests/Controller/NoteControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Tests/Controller/NoteControllerTest.php -------------------------------------------------------------------------------- /src/AppBundle/Twig/Extension/DemoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/src/AppBundle/Twig/Extension/DemoExtension.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gimler/symfony-rest-edition/HEAD/web/robots.txt --------------------------------------------------------------------------------