From 9c76d8bdcb4c548b9b2fecce4be06b7c6b492ac3 Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Wed, 10 Jul 2013 02:17:28 -0500 Subject: [PATCH] building some more automation with a makefile and adding it as a script --- Makefile | 4 ++++ composer.json | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 Makefile 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" } }