Skip to content

Commit

Permalink
Merge pull request #14 from inakianduaga/develop
Browse files Browse the repository at this point in the history
Readme update
  • Loading branch information
Inaki Anduaga committed Jan 20, 2015
2 parents 256b63b + 6265aaf commit dfce6a9
Show file tree
Hide file tree
Showing 3 changed files with 302 additions and 123 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ php:
# aliased to a recent 5.5.x version
- 5.5

install: composer install --dev

# omitting "script:" will default to phpunit
# We create a folder where we will store the clove coverage report
script: phpunit
script:
- mkdir -p build/logs
- php vendor/bin/phpunit -c phpunit.xml --coverageClover build/logs/clover.xml
- php vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml

# configure notifications (email, IRC, campfire etc)
#notifications:
Expand Down
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# eloquent-external-storage
eloquent-external-storage
=========================

Adds external storage to an eloquent model.
[![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url]

> Adds external storage to an eloquent model.
- Storage supports different drivers, currently `file` and `Amazon AWS S3` are implemented
- Different models can have different storage methods, configurations
Expand Down Expand Up @@ -108,3 +111,10 @@ There are several commands related to testing

Both options have the ability to generate a code coverage report in different formats. When this is selected, a local server will be launched to visualize the coverage report



[travis-url]: https://travis-ci.org/inakianduaga/eloquent-external-storage
[travis-image]: https://travis-ci.org/inakianduaga/eloquent-external-storage.svg?branch=master

[coveralls-url]: https://coveralls.io/r/inakianduaga/eloquent-external-storage
[coveralls-image]: https://coveralls.io/repos/inakianduaga/eloquent-external-storage/badge.png
Loading

0 comments on commit dfce6a9

Please sign in to comment.