Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 9cae490

Browse files
committed
Initiating First Build
1 parent 794965e commit 9cae490

File tree

4 files changed

+35
-3
lines changed

4 files changed

+35
-3
lines changed

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Laravel 5 IBM Watson Translate
22

3+
[![Build Status](https://travis-ci.org/findbrok/laravel-watson-translate.svg?branch=master)](https://travis-ci.org/findbrok/laravel-watson-translate)
34
[![Latest Stable Version](https://poser.pugx.org/findbrok/laravel-watson-translate/v/stable)](https://packagist.org/packages/findbrok/laravel-watson-translate)
45
[![Total Downloads](https://poser.pugx.org/findbrok/laravel-watson-translate/downloads)](https://packagist.org/packages/findbrok/laravel-watson-translate)
56
[![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)
5354
## TODO
5455

5556
- [ ] Create Translation Model
56-
- [ ] Delete Translation Model
57+
- [ ] Delete Translation Model

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
}
1111
],
1212
"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",
1515
"guzzlehttp/guzzle": "~5.3|~6.0"
1616
},
1717
"require-dev": {

phpunit.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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>

0 commit comments

Comments
 (0)