2014-02-17 16:01:00 +01:00
|
|
|
module.exports = function (grunt) {
|
|
|
|
'use strict';
|
|
|
|
|
2013-06-03 15:32:55 +02:00
|
|
|
grunt.loadNpmTasks('grunt-php');
|
|
|
|
|
|
|
|
grunt.initConfig({
|
|
|
|
php: {
|
|
|
|
dist: {
|
|
|
|
options: {
|
2014-02-17 16:01:00 +01:00
|
|
|
keepalive: true,
|
|
|
|
open: true,
|
2015-07-20 22:35:37 +02:00
|
|
|
port: 8085,
|
|
|
|
router: "index.php"
|
2013-06-03 15:32:55 +02:00
|
|
|
}
|
|
|
|
}
|
2015-07-21 22:37:29 +02:00
|
|
|
}
|
2013-06-03 15:32:55 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
grunt.registerTask('default', ['php']);
|
2015-04-21 17:34:43 +02:00
|
|
|
};
|