I hereby claim:
- I am stubbs on github.
- I am stubbs (https://keybase.io/stubbs) on keybase.
- I have a public key whose fingerprint is 74A6 E90F 9B31 AC04 CE3A D430 7596 314A 6514 191E
To claim this, I am signing this object:
| - name: Install Packages Needed To Compile PHP 7 | |
| apt: pkg={{ item }} state=latest | |
| with_items: | |
| - git | |
| - autoconf | |
| - bison | |
| - libxml2-dev | |
| - libbz2-dev | |
| - libmcrypt-dev | |
| - libcurl4-openssl-dev |
I hereby claim:
To claim this, I am signing this object:
| colorscheme:symfony | |
| cs_re:cyan:^\[....-..-.. ..:..:..\] | |
| cs_re:blue: .*\.(INFO|NOTICE).* | |
| cs_re:red: .*\.(ERROR|CRITICAL).* | |
| cs_re:blue: \{[^}]+\} |
| $login = $client->post("/rest/login", array("Content-Type" => "application/json"), '', array('debug' => true)); | |
| $login->setBody("{'username':'stuart.grimshaw','password':'strongpassword'}"); | |
| $login->send(); |
| #!/bin/bash | |
| PLATFORM='unknown' | |
| UNAMESTR=`uname` | |
| XARGS_EXIT=1 | |
| if [[ "$UNAMESTR" == 'Linux' ]]; then | |
| PLATFORM='linux' | |
| XARGS_EXIT=123 | |
| elif [[ "$UNAMESTR" == 'FreeBSD' ]]; then | |
| PLATFORM='freebsd' |
| INFO global: Vagrant version: 1.2.2 | |
| DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/box/plugin.rb | |
| INFO manager: Registered plugin: box command | |
| DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/destroy/plugin.rb | |
| INFO manager: Registered plugin: destroy command | |
| DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/halt/plugin.rb | |
| INFO manager: Registered plugin: halt command | |
| DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/init/plugin.rb | |
| INFO manager: Registered plugin: init command | |
| DEBUG global: Loading core plugin: /Applications/Vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/commands/package/plugin.rb |
| <?php | |
| require_once __DIR__ . '/bootstrap.php.cache'; | |
| require_once __DIR__ . '/AppKernel.php'; | |
| use Symfony\Bundle\FrameworkBundle\Console\Application; | |
| use Symfony\Component\Console\Output\ConsoleOutput; | |
| use Symfony\Component\Console\Input\ArrayInput; | |
| use Doctrine\Bundle\DoctrineBundle\Command\DropDatabaseDoctrineCommand; |
| <?php | |
| use Symfony\Component\HttpKernel\Kernel; | |
| use Symfony\Component\Config\Loader\LoaderInterface; | |
| class AppKernel extends Kernel | |
| { | |
| public function registerBundles() | |
| { | |
| $bundles = array( |
| exec {"load-crm-fixtures": | |
| command => "mysql -u db_user -ppassword db_name < *.sql", | |
| cwd => "${rootDir}/sites/${siteDirectory}/db/crm/fixtures/", | |
| path => ['/usr/bin'], | |
| require => Exec['clean-crm-db'], | |
| logoutput => true | |
| } |
| # Running in folder: /Users/stuart/Projects/lpsite/modules/recurring_payments/tests | |
| $ phpunit -c phpunit.xml /Users/stuart/Projects/lpsite/modules/recurring_payments/tests/recurring_payments/RecurringPaymentErrorTest.php | |
| -c: phpunit: command not found |