我想让php服务器正常工作。
我尽量保持代码尽可能简单,使其首先工作。我的D驱动器中有一个名为firethis
的文件夹,其中包含index.php
。当我告诉grunt-php运行时,它给了我错误。我做错了什么。
谢谢!
D:\>grunt php
Warning: Task "php" not found. Use --force to continue.
Aborted due to warnings.
配置
module.exports = function(grunt){
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
php: {
dist: {
options: {
base: 'firethis'
}
}
},
grunt.loadNpmTasks('grunt-php');
grunt.registerTask('default', 'php');