├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── AppCache.php ├── AppKernel.php ├── Resources │ └── views │ │ └── base.html.twig ├── autoload.php ├── check.php ├── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── parameters.ini │ ├── routing.yml │ ├── routing_dev.yml │ └── security.yml ├── console └── phpunit.xml.dist ├── bin ├── .htaccess ├── build_bootstrap └── vendors ├── composer.json ├── src ├── .htaccess └── Acme │ └── DemoBundle │ ├── AcmeDemoBundle.php │ ├── Controller │ ├── DemoController.php │ ├── SecuredController.php │ └── WelcomeController.php │ ├── ControllerListener.php │ ├── DependencyInjection │ └── AcmeDemoExtension.php │ ├── Form │ └── ContactType.php │ ├── Resources │ ├── config │ │ └── services.xml │ ├── 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 │ └── views │ │ ├── Demo │ │ ├── contact.html.twig │ │ ├── hello.html.twig │ │ └── index.html.twig │ │ ├── Secured │ │ ├── hello.html.twig │ │ ├── helloadmin.html.twig │ │ ├── layout.html.twig │ │ └── login.html.twig │ │ ├── Welcome │ │ └── index.html.twig │ │ └── layout.html.twig │ ├── Tests │ └── Controller │ │ └── DemoControllerTest.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/KnpLabs/symfony-with-composer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/AppCache.php -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/check.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/config_prod.yml -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/parameters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/parameters.ini -------------------------------------------------------------------------------- /app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/routing.yml -------------------------------------------------------------------------------- /app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/routing_dev.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/console -------------------------------------------------------------------------------- /app/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/app/phpunit.xml.dist -------------------------------------------------------------------------------- /bin/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /bin/build_bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/bin/build_bootstrap -------------------------------------------------------------------------------- /bin/vendors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/bin/vendors -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/composer.json -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /src/Acme/DemoBundle/AcmeDemoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/AcmeDemoBundle.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Controller/DemoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Controller/DemoController.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Controller/SecuredController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Controller/SecuredController.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Controller/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Controller/WelcomeController.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/ControllerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/ControllerListener.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/DependencyInjection/AcmeDemoExtension.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Form/ContactType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Form/ContactType.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/config/services.xml -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/css/demo.css -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/blue-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/blue-arrow.png -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/field-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/field-background.gif -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/logo.gif -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/search.png -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/welcome-configure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/welcome-configure.gif -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/welcome-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/welcome-demo.gif -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/public/images/welcome-quick-tour.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/public/images/welcome-quick-tour.gif -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Demo/contact.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Demo/contact.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Demo/hello.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Demo/hello.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Demo/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Demo/index.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Secured/hello.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Secured/hello.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Secured/helloadmin.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Secured/helloadmin.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Secured/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Secured/layout.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Secured/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Secured/login.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/Welcome/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/Welcome/index.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Resources/views/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Resources/views/layout.html.twig -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Tests/Controller/DemoControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Tests/Controller/DemoControllerTest.php -------------------------------------------------------------------------------- /src/Acme/DemoBundle/Twig/Extension/DemoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/src/Acme/DemoBundle/Twig/Extension/DemoExtension.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KnpLabs/symfony-with-composer/HEAD/web/robots.txt --------------------------------------------------------------------------------