Installed packages
- AdvancedNewFiles
- All Autocomplete
- AutoFileName
- Better Coffescript
- Color Highlighter
- CTags
- DocBlockr
- EditorConfig
- Emmet
<?php | |
/* | |
Plugin Name: Shop Order Info Column | |
Plugin URI: https://example.com | |
Description: Add order details to the order listings. | |
Author: Your name | |
Version: 1.0 | |
Author URI: https://example.com | |
*/ |
=================================== | |
/etc/php5/fpm/pool.d/www.conf | |
=================================== | |
[...] | |
request_terminate_timeout = 300 | |
[...] | |
php_admin_value[post_max_size] = 100M | |
php_admin_value[upload_max_filesize] = 100M | |
php_admin_value[max_execution_time] = 300 |
/** @test */ | |
public function it_creates_a_new_partner_given_valid_parameters() | |
{ | |
$this->getJson('api/v1/partners', 'POST', $this->getStub()); | |
$this->assertResponseStatus(201); | |
} | |
// stub |
sudo apt-get install --no-install-recommends virtualbox-guest-utils && sudo apt-get install virtualbox-guest-dkms |