Skip to content

Commit

Permalink
Merge pull request #5 from AdactiveSAS/feature/travis-ci
Browse files Browse the repository at this point in the history
Feature/travis ci
  • Loading branch information
Moroine Bentefrit authored Aug 4, 2017
2 parents 775ab77 + 8b70db0 commit bba05b5
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 4 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage_clover: build/logs/clover.xml
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
; top-most EditorConfig file
root = true

; Unix-style newlines
[*]
end_of_line = LF

[*.php]
indent_style = space
indent_size = 4
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/vendor/
.idea
composer.lock
build
build
/build/
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: php

dist: precise
sudo: false

matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
fast_finish: true

before_script:
- composer update

script:
- vendor/bin/phpunit

after_success:
- travis_retry php vendor/bin/coveralls
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# SAML2 Bridge Bundle

[![Coverage Status](https://coveralls.io/repos/github/AdactiveSAS/saml2-bridge-bundle/badge.svg?branch=master)](https://coveralls.io/github/AdactiveSAS/saml2-bridge-bundle?branch=master)
[![Build Status](https://travis-ci.org/AdactiveSAS/saml2-bridge-bundle.svg?branch=master)](https://travis-ci.org/AdactiveSAS/saml2-bridge-bundle)

A bundle that adds SAML capabilities to your application using [simplesamlphp/saml2][1] highly inspired by
[OpenConext/Stepup-saml-bundle][2]

Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@
}
],
"require": {
"php": ">=5.4,<8.0-dev",
"php": ">=5.6,<8.0-dev",
"ext-openssl": "*",
"simplesamlphp/saml2": "^1.10.3",
"symfony/symfony": "^2.7.0|^3.0.0",
"symfony/workflow": "^3.0.0"
"symfony/workflow": "^3.0.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7.17",
"symfony/phpunit-bridge": "^2.8.0",
"liip/functional-test-bundle": "^1.7",
"twig/twig": "^2.0"
"twig/twig": "^1.34|^2.0",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit bba05b5

Please sign in to comment.