This doc explains the nuances of using the Datadog Ansible Integration with Ansible Tower.
In a directory of your choosing, run the following commands:
vagrant init ansible/tower
vagrant up --provider virtualbox
vagrant ssh
This doc explains the nuances of using the Datadog Ansible Integration with Ansible Tower.
In a directory of your choosing, run the following commands:
vagrant init ansible/tower
vagrant up --provider virtualbox
vagrant ssh
<?php | |
namespace AppBundle\Tests; | |
use Doctrine\DBAL\Connection; | |
use Doctrine\ORM\Tools\SchemaTool; | |
use Doctrine\DBAL\Driver\PDOMysql\Driver as MySQLDriver; | |
class DoctrineMigrationTest extends WebTestCase | |
{ |
First, make sure you have command line tools installed:
xcode-select --install
Then open Terminal.app and type:
curl https://gist.githubusercontent.com/DirtyF/5d2bde5c682101b7b5d90708ad333bf3/raw/fbc736fa1b50bd637929a315e6803df306c8bc8e/setup-rbenv.sh | bash
Table of Contents
First of all, ensure you don't have any deprecated!
The Symfony documentation explains it well, but let's sum up:
$ composer require --dev symfony/phpunit-bridge
)deprecation error
handledA Symfony command to convert from NelmioApiDocBundle annotations to Swagger-PHP annotations.
This code is provided as is. Make sure to have your code committed to version control before running the command. Check if things work out and if not, use version control to reset the automated changes and fix the command.
#!/bin/bash | |
#-------------------------------------------------------------------------------------------------- | |
# WARNING : due to a 'git stash save -u' command, check your .gitignore file before using this hook | |
# -> http://blog.icefusion.co.uk/git-stash-can-delete-ignored-files-git-stash-u/ | |
#-------------------------------------------------------------------------------------------------- | |
binary="coke" | |
file=".coke" | |
files="" |
<?php | |
namespace Context; | |
use Behat\MinkExtension\Context\RawMinkContext; | |
use Behat\Testwork\Tester\Result\TestResult; | |
use Behat\Mink\Driver\Selenium2Driver; | |
class ScreenshotContext extends RawMinkContext | |
{ |
namespace Kaliop\AProject\PageObjects\Pages; | |
use SensioLabs\Behat\PageObjectExtension\PageObject\Page; | |
use Behat\Mink\Session; | |
use SensioLabs\Behat\PageObjectExtension\PageObject\Factory; | |
abstract class BasePage extends Page | |
{ | |
protected $aService; |
<snippet> | |
<content><![CDATA[ | |
/** | |
* Set ${1:property} | |
* | |
* @param ${2:type} \$$1 | |
* | |
* @return ${3:Type} | |
*/ | |
public function set${1/^([a-z])/\u$1/g}(\$$1) |