File tree Expand file tree Collapse file tree 4 files changed +36
-19
lines changed Expand file tree Collapse file tree 4 files changed +36
-19
lines changed Original file line number Diff line number Diff line change 11language : php
22dist : trusty
33php :
4+ - " 7.4"
5+ - " 7.3"
6+ - " 7.2"
47 - " 7.1"
58 - " 7.0"
69 - " 5.6"
Original file line number Diff line number Diff line change 11{
2- "name" : " mikehaertl/php-shellcommand" ,
3- "description" : " An object oriented interface to shell commands" ,
4- "keywords" : [" shell" ],
5- "license" : " MIT" ,
6- "authors" : [
7- {
8- "name" : " Michael Härtl" ,
9- "email" : " haertl.mike@gmail.com"
10- }
11- ],
12- "require" : {
13- "php" : " >= 5.4.0"
14- },
15- "autoload" : {
16- "psr-4" : {
17- "mikehaertl\\ shellcommand\\ " : " src/"
18- }
2+ "name" : " mikehaertl/php-shellcommand" ,
3+ "description" : " An object oriented interface to shell commands" ,
4+ "keywords" : [" shell" ],
5+ "license" : " MIT" ,
6+ "authors" : [
7+ {
8+ "name" : " Michael Härtl" ,
9+ "email" : " haertl.mike@gmail.com"
1910 }
11+ ],
12+ "require" : {
13+ "php" : " >= 5.4.0"
14+ },
15+ "require-dev" : {
16+ "phpunit/phpunit" : " >4.0 <8"
17+ },
18+ "autoload" : {
19+ "psr-4" : {
20+ "mikehaertl\\ shellcommand\\ " : " src/"
21+ }
22+ },
23+ "autoload-dev" : {
24+ "psr-4" : {
25+ "tests\\ " : " tests"
26+ }
27+ }
2028}
Original file line number Diff line number Diff line change 11<?php
2+ namespace tests ;
3+
4+ use PHPUnit \Framework \TestCase ;
25use mikehaertl \shellcommand \Command ;
36
4- class BlockingCommandTest extends \ PHPUnit \ Framework \ TestCase
7+ class BlockingCommandTest extends TestCase
58{
69 public function setUp ()
710 {
Original file line number Diff line number Diff line change 11<?php
2+ namespace tests ;
3+
4+ use PHPUnit \Framework \TestCase ;
25use mikehaertl \shellcommand \Command ;
36
4- class CommandTest extends \ PHPUnit \ Framework \ TestCase
7+ class CommandTest extends TestCase
58{
69 public function setUp ()
710 {
You can’t perform that action at this time.
0 commit comments