1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * Gruntfile.js
- */
- module.exports = function(grunt) {
- grunt.initConfig({
- pkg: grunt.file.readJSON('package.json'),
- php: {
- dist: {
- options: {
- port: 8080,
- base: 'web',
- open: true,
- keepalive: true
- }
- }
- },
- phpcs: {
- application: {
- dir: ['src/']
- },
- options: {
- bin: 'vendor/bin/phpcs',
- standard: 'PSR2'
- }
- },
- phplint: {
- options: {
- swapPath: '/tmp'
- },
- all: ['src/*.php']
- },
- phpdocumentor: {
- dist: {
- options: {
- directory: './src/',
- bin: 'vendor/bin/phpdoc.php',
- target: 'docs/'
- }
- }
- },
- clean: {
- phpdocumentor: 'docs/'
- },
- phpunit: {
- unit: {
- dir: 'tests'
- },
- options: {
- bin: 'vendor/bin/phpunit',
- colors: true,
- testdox: true
- }
- },
- watch: {
- scripts: {
- files: ['src/*.php', 'src/**/*.php', 'tests/*.php', 'tests/**/*.php'],
- tasks: ['precommit'],
- },
- },
- });
- grunt.loadNpmTasks('grunt-phpcs');
- grunt.loadNpmTasks('grunt-php');
- grunt.loadNpmTasks('grunt-phplint');
- grunt.loadNpmTasks('grunt-phpunit');
- grunt.loadNpmTasks('grunt-phpdocumentor');
- grunt.loadNpmTasks('grunt-contrib-watch');
- grunt.loadNpmTasks('grunt-contrib-clean');
- grunt.registerTask('phpdocs', [
- 'clean:phpdocumentor',
- 'phpdocumentor'
- ]);
- grunt.registerTask('precommit', ['phplint:all', 'phpcs', 'phpunit:unit']);
- grunt.registerTask('default', ['phplint:all', 'phpcs', 'phpunit:unit', 'phpdocs']);
- grunt.registerTask('server', ['php']);
- };
|