Skip to content

Commit

Permalink
Merge pull request #3 from tonik/1.2.0
Browse files Browse the repository at this point in the history
1.2.0
  • Loading branch information
jedrzejchalubek committed Jan 23, 2017
2 parents 247df8b + 5039765 commit 09946fb
Show file tree
Hide file tree
Showing 21 changed files with 2,831 additions and 513 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
vendor
.DS_Store
Thumbs.db
Thumbs.db

/bin
/coverage
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: php

notifications:
email:
on_success: never
on_failure: change

php:
- '5.6'
- '7.0'
- '7.1'

before_script:
- composer self-update
- composer install --no-interaction --dev

script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml

after_script:
- php vendor/bin/coveralls -v
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[![Build Status](https://travis-ci.org/tonik/gin.svg?branch=master)](https://travis-ci.org/tonik/gin) [![Coverage Status](https://coveralls.io/repos/github/tonik/gin/badge.svg?branch=1.2.0)](https://coveralls.io/github/tonik/gin?branch=1.2.0)
17 changes: 12 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@
"require": {
"php": ">=5.6"
},
"require-dev": {
"tonik/cli": "^1.0.0",

"brain/monkey": "~1.3.0",
"mockery/mockery": "~1.0.0",
"phpunit/phpunit": "~5.3.0",
"satooshi/php-coveralls": "~1.0.0",
"php-mock/php-mock-phpunit": "^1.1"
},
"suggest": {
"symfony/console": "[Gin CLI] Required for the proper operation of Console component",
"symfony/finder": "[Gin CLI] Needed for `gin tonik:shake` command"
"tonik/cli": "Required for the proper operation of Gin CLI"
},
"autoload": {
"psr-4": {
"Tonik\\Gin\\": "src/Gin/"
}
},
"minimum-stability": "dev"
}
}
}

0 comments on commit 09946fb

Please sign in to comment.