This file contains 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/sh | |
# PostgreSQL, quick! | |
DOCKER_NETWORK="dev" | |
PG_HOST="pg" | |
PG_PASSWORD="pgrocks!" | |
# pull docker image | |
docker image inspect postgres > /dev/null || docker pull postgres |
This file contains 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 Lrqdo\Tests; | |
use MangoPay\ApiWallets; | |
use MangoPay\MangoPayApi; | |
use MangoPay\Money; | |
use MangoPay\Wallet; | |
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; |
This file contains 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 | |
/** | |
* @author Nicolas Clavaud <[email protected]> | |
* http://n.clavaud.free.fr/blog/index.php?article31/symfony2-standalone-form-component-tutorial | |
*/ | |
namespace Me\MyApp; | |
use Symfony\Component\ClassLoader\UniversalClassLoader; |