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 1
1
language : php
2
2
dist : trusty
3
3
php :
4
+ - " 7.4"
5
+ - " 7.3"
6
+ - " 7.2"
4
7
- " 7.1"
5
8
- " 7.0"
6
9
- " 5.6"
Original file line number Diff line number Diff line change 1
1
{
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"
19
10
}
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
+ }
20
28
}
Original file line number Diff line number Diff line change 1
1
<?php
2
+ namespace tests ;
3
+
4
+ use PHPUnit \Framework \TestCase ;
2
5
use mikehaertl \shellcommand \Command ;
3
6
4
- class BlockingCommandTest extends \ PHPUnit \ Framework \ TestCase
7
+ class BlockingCommandTest extends TestCase
5
8
{
6
9
public function setUp ()
7
10
{
Original file line number Diff line number Diff line change 1
1
<?php
2
+ namespace tests ;
3
+
4
+ use PHPUnit \Framework \TestCase ;
2
5
use mikehaertl \shellcommand \Command ;
3
6
4
- class CommandTest extends \ PHPUnit \ Framework \ TestCase
7
+ class CommandTest extends TestCase
5
8
{
6
9
public function setUp ()
7
10
{
You can’t perform that action at this time.
0 commit comments