This repository was archived by the owner on May 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +35
-3
lines changed Expand file tree Collapse file tree 4 files changed +35
-3
lines changed Original file line number Diff line number Diff line change
1
+ language : php
2
+
3
+ php :
4
+ - ' 5.5'
5
+ - ' 5.6'
6
+ - ' 7.0'
7
+
8
+ before_script :
9
+ - composer self-update
10
+
11
+ install :
12
+ - composer install --prefer-source --no-interaction --dev
13
+
14
+ script : vendor/bin/phpunit
Original file line number Diff line number Diff line change 1
1
# Laravel 5 IBM Watson Translate
2
2
3
+ [ ![ Build Status] ( https://travis-ci.org/findbrok/laravel-watson-translate.svg?branch=master )] ( https://travis-ci.org/findbrok/laravel-watson-translate )
3
4
[ ![ Latest Stable Version] ( https://poser.pugx.org/findbrok/laravel-watson-translate/v/stable )] ( https://packagist.org/packages/findbrok/laravel-watson-translate )
4
5
[ ![ Total Downloads] ( https://poser.pugx.org/findbrok/laravel-watson-translate/downloads )] ( https://packagist.org/packages/findbrok/laravel-watson-translate )
5
6
[ ![ Latest Unstable Version] ( https://poser.pugx.org/findbrok/laravel-watson-translate/v/unstable )] ( https://packagist.org/packages/findbrok/laravel-watson-translate )
@@ -53,4 +54,4 @@ Read the [Docs](https://github.com/findbrok/laravel-watson-translate/wiki)
53
54
## TODO
54
55
55
56
- [ ] Create Translation Model
56
- - [ ] Delete Translation Model
57
+ - [ ] Delete Translation Model
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " >=5.4 .0" ,
14
- "illuminate/support " : " ~5.0|~5.1|~5.2" ,
13
+ "php" : " >=5.5 .0" ,
14
+ "laravel/framework " : " ~5.0|~5.1|~5.2" ,
15
15
"guzzlehttp/guzzle" : " ~5.3|~6.0"
16
16
},
17
17
"require-dev" : {
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit backupGlobals =" false"
3
+ backupStaticAttributes =" false"
4
+ bootstrap =" vendor/autoload.php"
5
+ colors =" true"
6
+ convertErrorsToExceptions =" true"
7
+ convertNoticesToExceptions =" true"
8
+ convertWarningsToExceptions =" true"
9
+ processIsolation =" false"
10
+ stopOnFailure =" false"
11
+ syntaxCheck =" false" >
12
+ <testsuites >
13
+ <testsuite name =" Package Test Suite" >
14
+ <directory suffix =" .php" >./tests/</directory >
15
+ </testsuite >
16
+ </testsuites >
17
+ </phpunit >
You can’t perform that action at this time.
0 commit comments