Add option to remove Bootstrap when creating project (#1810)

* Add option to remove Bootstrap when creating project
* Remove phpmd, per @QWp6t
This commit is contained in:
Ben Word
2017-01-14 19:56:17 -07:00
committed by GitHub
parent ea7323a5ae
commit b91ab89834
3 changed files with 44 additions and 290 deletions

View File

@@ -35,13 +35,12 @@
"illuminate/config": "~5.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1",
"phpmd/phpmd": "^2.4.2"
"squizlabs/php_codesniffer": "^2.5.1"
},
"scripts": {
"test": [
"vendor/bin/phpcs",
"vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode"
]
"vendor/bin/phpcs"
],
"post-create-project-cmd": "Roots\\Sage\\PostCreateProject::removeBootstrap"
}
}