Skip to content

Commit a8480c4

Browse files
author
Andreas Frömer
committed
Merge branch 'master' of github.com:icanhazstring/systemctl-php
2 parents 607dca9 + 50defff commit a8480c4

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@ composer.phar
33
vendor/
44

55
# PHPUnit
6-
build/
6+
build/
7+
8+
# Vagrant
9+
.vagrant

Vagrantfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Vagrant.configure("2") do |config|
2+
config.vm.box = "puphpet/ubuntu1604-x64"
3+
4+
config.vm.provision "shell", inline: <<-SHELL
5+
add-apt-repository ppa:ondrej/php
6+
apt-get update
7+
apt-get install -y php7.1 php7.1-xml php7.1-mbstring php7.1-zip composer
8+
SHELL
9+
end

src/Unit/Timer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
43
namespace SystemCtl\Unit;
54

65
use SystemCtl\Exception\CommandFailedException;

0 commit comments

Comments
 (0)