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

Commit

Permalink
Initiating First Build
Browse files Browse the repository at this point in the history
  • Loading branch information
percymamedy committed May 22, 2016
1 parent 794965e commit 9cae490
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: php

php:
- '5.5'
- '5.6'
- '7.0'

before_script:
- composer self-update

install:
- composer install --prefer-source --no-interaction --dev

script: vendor/bin/phpunit
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Laravel 5 IBM Watson Translate

[![Build Status](https://travis-ci.org/findbrok/laravel-watson-translate.svg?branch=master)](https://travis-ci.org/findbrok/laravel-watson-translate)
[![Latest Stable Version](https://poser.pugx.org/findbrok/laravel-watson-translate/v/stable)](https://packagist.org/packages/findbrok/laravel-watson-translate)
[![Total Downloads](https://poser.pugx.org/findbrok/laravel-watson-translate/downloads)](https://packagist.org/packages/findbrok/laravel-watson-translate)
[![Latest Unstable Version](https://poser.pugx.org/findbrok/laravel-watson-translate/v/unstable)](https://packagist.org/packages/findbrok/laravel-watson-translate)
Expand Down Expand Up @@ -53,4 +54,4 @@ Read the [Docs](https://github.com/findbrok/laravel-watson-translate/wiki)
## TODO

- [ ] Create Translation Model
- [ ] Delete Translation Model
- [ ] Delete Translation Model
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0|~5.1|~5.2",
"php": ">=5.5.0",
"laravel/framework": "~5.0|~5.1|~5.2",
"guzzlehttp/guzzle": "~5.3|~6.0"
},
"require-dev": {
Expand Down
17 changes: 17 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 9cae490

Please sign in to comment.