我正在尝试让 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');