After 1 year of development and more than 700 commits authored by a hundred contributors across the world, the new major release of API Platform is immediately available for download. API Platform is a PHP 7 framework dedicated to the creation of modern and powerful web APIs. It is especially adapted to build API-centric information systems relying on hypermedia, Linked Data; and…
Tag: PHP
Create Symfony apps as quickly as with Laravel and keep your code framework-agnostic (Forum PHP)
Slides of my talk at AFUP’s Forum PHP 2016. You’ll learn about RAD and autowiring, the ADR pattern, framework agnostic controllers, PSR-7, PSR-15 and PSR-17.
Creating a hypermedia API in 5 minutes with API Platform (Take Off Conf)
This morning I was speaking about the API Platform framework at the Take Off Conf in my hometown of Lille. Take a look at my slides, and learn how to create a fully featured hypermedia API in a few minutes!
ADR pattern, autowiring, DunglasActionBundle: Symfony controllers redesigned
Here are the slides of the talk I gave yesterday at the Symfony meetup (sfPot) of Lille. I was presenting DunglasActionBundle, a refinement of the the Symfony controller system and talking about services autowiring and the ADR pattern.
The first alpha of API Platform 2.0 is available!
The first alpha of API Platform 2.0 has been released! Take a look to this presentation to discover changes and new features of this version: These slides have been presented first in the sfPot conference of Paris (May 17, 2016).
DunglasActionBundle 0.3.0 released!
DunglasActionBundle is an alternative controller system for the Symfony framework relying on autowiring and inspirited by the ADR pattern. Thanks to this bundle, controllers, commands and event listeners are automatically detected and registered as services. All their dependencies are also automatically registered. See the GitHub repository for an extensive documentation. A lot of work have been done…
Making the Symfony PropertyAccess Component 84% faster in 2.8… and counting
Update 12/06/15: I’ve opened a PR making the PropertyAccess Component 84% faster than before. It implements strategies explained at the end of this post. This PropertyAccess component allows to access to a property of an object (or a to a key of an array) regardless of the access strategy that must be used. It is smart enough to access…
Introducing API Platform (Forum PHP)
My slides from this morning at Forum PHP Paris about API Platform: Open the slides in full screen
Introducing the phpdoc-to-typehint Converter: add scalar type hints and return type declarations to your projects
tl;dr Download phpdoc-to-typehint, it will automatically add scalar type hints and return type declarations to your PHP project using existing PHPDoc annotations. PHP 7 will be released soon. Scalar type hints and return type declarations introduced in this new release are very interesting because they enforce the use of stricter types in PHP code. They are less error-prone and ease the…
New in Symfony 2.8/3.0: services autowiring
Symfony 3.0, the next major version of our preferred PHP framework, will be released in a few weeks. Basically, it shares the same code base as Symfony 2.8 but all deprecated features coming from older versions have been removed to simplify the framework and its maintenance: Symfony 3 deprecation progress report. #symfony pic.twitter.com/Nz4pMZZwU4 — Symfony News (@symfony_en) October 6, 2015 Symfony 2.8…