├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── app ├── .buildignore ├── .htaccess ├── 404.html ├── api │ ├── composer.json │ ├── composer.lock │ └── index.php ├── favicon.ico ├── images │ └── yeoman.png ├── index.html ├── robots.txt ├── scripts │ ├── app.js │ └── controllers │ │ ├── about.js │ │ ├── cars.js │ │ └── main.js ├── styles │ └── main.css └── views │ ├── about.html │ ├── cars.html │ └── main.html ├── bower.json ├── package.json └── test ├── .jshintrc ├── karma.conf.js └── spec └── controllers ├── about.js ├── cars.js └── main.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/README.md -------------------------------------------------------------------------------- /app/.buildignore: -------------------------------------------------------------------------------- 1 | *.coffee -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/404.html -------------------------------------------------------------------------------- /app/api/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/api/composer.json -------------------------------------------------------------------------------- /app/api/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/api/composer.lock -------------------------------------------------------------------------------- /app/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/api/index.php -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/images/yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/images/yeoman.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/index.html -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/scripts/app.js -------------------------------------------------------------------------------- /app/scripts/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/scripts/controllers/about.js -------------------------------------------------------------------------------- /app/scripts/controllers/cars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/scripts/controllers/cars.js -------------------------------------------------------------------------------- /app/scripts/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/scripts/controllers/main.js -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /app/views/about.html: -------------------------------------------------------------------------------- 1 |
This is the about view.
2 | -------------------------------------------------------------------------------- /app/views/cars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/views/cars.html -------------------------------------------------------------------------------- /app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/app/views/main.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/package.json -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/spec/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/test/spec/controllers/about.js -------------------------------------------------------------------------------- /test/spec/controllers/cars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/test/spec/controllers/cars.js -------------------------------------------------------------------------------- /test/spec/controllers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyDoggy/yo-angular-php-crud/HEAD/test/spec/controllers/main.js --------------------------------------------------------------------------------