We are working on a framework, is mandatory that you have read the framework doc:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<project name="[PROJECT_NAME]" default="build" basedir="."> | |
<property environment="env"/> | |
<loadfile property="version" srcfile="${basedir}/VERSION"/> | |
<condition property="bat" value=".bat" else=""> | |
<os family="windows" /> | |
</condition> | |
<target name="test"> | |
<delete dir="${basedir}/build"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tolkiendil\AssoBundle\Form\Type; | |
use Symfony\Component\Form\AbstractType; | |
class DatePickerType extends AbstractType | |
{ | |
public function getDefaultOptions(array $options) | |
{ |
- For your local dev, create a
Dockerfile
that is based on your production image and simply installxdebug
into it. Exemple:
FROM php:5
RUN yes | pecl install xdebug \
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# MIT License | |
# | |
# Copyright (c) 2024 Robin Landström | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |