Sam Yong presents Packfire, an object-oriented PHP framework for building RESTful APIs. Packfire is extensible, encapsulates PHP code, and supports features like code generation, unit testing, IoC containers, YAML configuration, and LINQ-style queries. Yong demonstrates Packfire by building a real-time GPS tracking API using long polling to retrieve updated coordinate data from a database. He invites developers to learn more and contribute to the open source Packfire project on GitHub.
1 of 28
More Related Content
Rapid API Development with Packfire Framework for PHP
2. Who am I?
Recent Graduate, Diploma in IT, Class of 2012
11 July 2012
School of ICT, Ngee Ann Polytechnic
WorldSkills London 2011, Web Design
Research and Design Engineer
RHyMeS Centre, School of ICT, Ngee Ann Polytechnic
Waiting in line to Tekong
http://mauris.sg/packfire
17. RESTful Requests
Postback to self
11 July 2012
http://mauris.sg/packfire
18. Database LINQ
11 July 2012
SELECT FROM `CoordinateId`, `Latitude`, `Longitude` FROM `coordinates`
WHERE SessionId = :session AND Coordinateid > :lastPoint
ORDER BY `Updated`
http://mauris.sg/packfire
19. Long Polling
11 July 2012
// Database LINQ.
http://mauris.sg/packfire