├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── .bowerrc │ ├── .jshintrc │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── css │ └── template_override.css │ ├── gitignore │ ├── index.html │ ├── js │ └── app.js │ ├── package.json │ └── scss │ ├── _appstyles.scss │ ├── _settings.scss │ └── app.scss ├── package.json └── test ├── test-creation.js └── test-load.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /app/templates/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/.jshintrc -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- 1 | ## zf5_project 2 | 3 | (place your readme here) -------------------------------------------------------------------------------- /app/templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/bower.json -------------------------------------------------------------------------------- /app/templates/css/template_override.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp 3 | app/bower_components 4 | .sass-cache -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/js/app.js -------------------------------------------------------------------------------- /app/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/package.json -------------------------------------------------------------------------------- /app/templates/scss/_appstyles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/scss/_appstyles.scss -------------------------------------------------------------------------------- /app/templates/scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/scss/_settings.scss -------------------------------------------------------------------------------- /app/templates/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/app/templates/scss/app.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/package.json -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/generator-zf5/HEAD/test/test-load.js --------------------------------------------------------------------------------