File tree 4 files changed +33
-4
lines changed
4 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 1
1
vendor /
2
- composer.lock
2
+ composer * .lock
3
3
composer.phar
4
4
.DS_Store
5
5
.idea /
Original file line number Diff line number Diff line change 1
1
language : php
2
2
dist : xenial
3
3
php :
4
+ - 7.0
5
+ - 7.1
6
+ - 7.2
4
7
- 7.3
5
8
- 7.4
6
9
7
10
before_script :
11
+ - if (( "$TRAVIS_PHP_VERSION" >= 7.4 )); then export COMPOSER="./composer-7-4.json"; fi
8
12
- composer install
9
13
10
- script : phpunit --verbose
14
+ script : php ./vendor/bin/ phpunit --verbose
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " messagebird/php-rest-api" ,
3
+ "description" : " MessageBird REST API client for PHP" ,
4
+ "type" : " library" ,
5
+ "homepage" : " https://github.com/messagebird/php-rest-api" ,
6
+ "license" : " BSD-2-Clause" ,
7
+ "authors" : [
8
+ {
9
+ "name" : " MessageBird" ,
10
+
11
+ }
12
+ ],
13
+ "require" : {
14
+ "php" : " >=7.4" ,
15
+ "ext-curl" : " *"
16
+ },
17
+ "require-dev" : {
18
+ "phpunit/phpunit" : " ^8"
19
+ },
20
+ "autoload" : {
21
+ "psr-4" : {
22
+ "MessageBird\\ " : " src/MessageBird/"
23
+ }
24
+ }
25
+ }
Original file line number Diff line number Diff line change 11
11
}
12
12
],
13
13
"require" : {
14
- "php" : " >=7.2. 0" ,
14
+ "php" : " >=7.0" ,
15
15
"ext-curl" : " *"
16
16
},
17
17
"require-dev" : {
18
- "phpunit/phpunit" : " ^8 "
18
+ "phpunit/phpunit" : " ^6 "
19
19
},
20
20
"autoload" : {
21
21
"psr-4" : {
You can’t perform that action at this time.
0 commit comments