diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6be4d22 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +web: .PHONY + php -S localhost:8088 -t . index.php + +.PHONY: diff --git a/composer.json b/composer.json index 0897b93..99bfe00 100644 --- a/composer.json +++ b/composer.json @@ -19,5 +19,8 @@ "branch-alias": { "dev-master": "1.3.x-dev" } + }, + "scripts": { + "post-install-cmd": "make" } }