Since we are using Open-Source solutions in our daily business, we contribute to Open-Source projects and maintain our own set of Open-Source tools. Our employees can use their Learn&Grow time budget to contribute to any Open-Source project they like.
19 posts tagged with "symfony"
View All TagsAdding an entity reference to a Sulu entity
Let's assume you have a sulu entity App\Entity\MyEntity
defined and you want to add a reference to this other entity
App\Entity\OtherEntity
to it. Follow this blog post along to find out which steps you have to take.
Populate default data in Sulu CMS
In our current Sulu CMS project a requirement was to populate default data when a content editor did not provide all needed information, e.g. social sharing information or SEO-related configurations.
SymfonyCon Disneyland Paris 2022
1300 Attendees talking about Symfony receiving a bunch of socks. Oh, and did we mention it took place in Disneyland?
API Platform Conference 2022
France is more than just cheese, wine, and the Eiffel Tower. Our neighbors know not only how to develop excellent PHP Frameworks, but also how to organize awesome conferences!
A part of our PHP-Team took the chance to attend the API Platform Conference 2022 in person, which took place in Lille (France).
API Platform Conference 2021
Two weeks ago the bitExpert PHP team participated in the first API Platform Conference as part of our Learn&Grow initiative. Having built a number of projects based on the API Platform components already, we were keen to get the latest insights and learn from the core team about upcoming features.
Symfony Usergroup Frankfurt
Am Donnerstag den 26.11.2015 trifft sich die Symfony Usergroup Frankfurt zum ersten Mal bei der Cocomore AG in Frankfurt. Ich freue mich dabei zu sein und werde meinen Vortrag "Composer im Unternehmensalltag" zu präsentieren.
Silex, Twig and Translation support
As I have written a couple of days ago, we are using Silex and Twig to build a small application for one of our customers. Since the project was in need of I18N support, we set up the TranslationServiceProvider with the Symfony/Translation component as the Silex documentation advised. Unfortunately I was not able to find a Twig extension allowing us to translate static content within a Twig template, so it was the time to jump in and develop an extension on my own and publish it on github. Simply drop the files in your vendors directory and include the lib/bitExpert/Silex/Autoloader.php file within your application and execute the steps listed below:
Silex and the TranslationServiceProvider and some Composer magic
First time I am toying with Silex and the Symfony components. To demo an application for one of our customers we quickly set-up Silex and put a small application on top. Since the application was in need for a I18N solution I threw in the TranslationServiceProvider. The documentation of Silex states that "you can simply clone the whole Symfony2 into vendor" which did not make any sense to me. Why using a micro-framework when I have to have Symfony2 installed just for the translation part? I was looking for a alternative and remembered Composer. Composer is a tool written in PHP that helps you manage your project or libraries' dependencies. Luckily the Symfony2 components are using Composer, so we can easily install the required dependencies like this: