summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatt <matt@twilio.com>2016-08-02 14:26:33 -0700
committermatt <matt@twilio.com>2016-08-02 14:26:33 -0700
commitc1f22b33aabc26d6a9bc87cfb44d288ada5a2a3c (patch)
treea7a525155ebd16e4264cf747498bdd3d8101601f
parentbd5648d95252f82edc383be87f70d331718445bb (diff)
downloadtwilio-php-c1f22b33aabc26d6a9bc87cfb44d288ada5a2a3c.zip
twilio-php-c1f22b33aabc26d6a9bc87cfb44d288ada5a2a3c.tar.gz
twilio-php-c1f22b33aabc26d6a9bc87cfb44d288ada5a2a3c.tar.bz2
Update Authors (non-functional) `release` make target
-rw-r--r--AUTHORS.md89
-rw-r--r--Makefile7
2 files changed, 56 insertions, 40 deletions
diff --git a/AUTHORS.md b/AUTHORS.md
index c649c0b..d212325 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -4,41 +4,54 @@ Authors
A huge thanks to all of our contributors:
-- =noloh
-- Adam Ballai
-- Alex Chan
-- Alex Rowley
-- Alexandre Payment
-- Andrew Nicols
-- Brett Gerry
-- Bulat Shakirzyanov
-- Carlos Diaz-Padron
-- Chris Barr
-- D. Keith Casey, Jr.
-- Doug Black
-- Elliot Lings
-- John Britton
-- John Wolthuis
-- Jordi Boggiano
-- Justin Witz
-- Keith Casey
-- Kevin Burke
-- Kyle Conroy
-- Luke Waite
-- Matt Nowack
-- Maxime Horcholle
-- Neuman Vong
-- Patrick Labbett
-- Peter Meth
-- Ryan Brideau
-- Sam Kimbrel
-- Shawn Parker
-- Stuart Langley
-- Taichiro Yoshida
-- Trenton McManus
-- aaronfoss
-- alexw23
-- gramanathaiah
-- sashalaundy
-- tacman
-- till
+- =noloh
+- Adam Ballai
+- Alex Chan
+- Alex Rowley
+- Alexandre Payment
+- Andrew Nicols
+- Andrew Ryno
+- Ben Paster
+- Brett Gerry
+- Bulat Shakirzyanov
+- Carlos Diaz-Padron
+- Chris Barr
+- D Keith Casey Jr
+- D. Keith Casey, Jr.
+- Doug Black
+- Elliot Lings
+- Jen Li
+- Jingming Niu
+- John Britton
+- John Wolthuis
+- Jordi Boggiano
+- Justin Witz
+- Keith Casey
+- Kevin Burke
+- Kyle
+- Kyle Conroy
+- Luke Waite
+- Mario Celi
+- Matt Nowack
+- Matthew Nowack
+- Maxime Horcholle
+- Mitch Friedman
+- Neuman
+- Neuman Vong
+- Patrick Labbett
+- Peter Meth
+- Ragil Prasetya
+- Ryan Brideau
+- Sam Kimbrel
+- Shawn Parker
+- Stuart Langley
+- Taichiro Yoshida
+- Trenton McManus
+- Zack Pitts
+- aaronfoss
+- alexw23
+- gramanathaiah
+- matt
+- sashalaundy
+- tacman
+- till
diff --git a/Makefile b/Makefile
index 39d428a..543dac9 100644
--- a/Makefile
+++ b/Makefile
@@ -48,9 +48,9 @@ venv:
virtualenv venv
docs-install:
- brew install apigen
+ composer require --dev apigen/apigen
-docs:
+docs: docs-install
apigen generate -s ./ -d docs --exclude="Tests/*" --exclude="vendor/*" --main Twilio
sh docs-update.sh
@@ -65,4 +65,7 @@ authors:
echo "Authors\n=======\n\nA huge thanks to all of our contributors:\n\n" > AUTHORS.md
git log --raw | grep "^Author: " | cut -d ' ' -f2- | cut -d '<' -f1 | sed 's/^/- /' | sort | uniq >> AUTHORS.md
+release: authors
+ echo "Release!"
+
.PHONY: all clean dist test docs docs-install test-install authors