Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
leo108 committed Apr 3, 2018
1 parent 2073f41 commit 8724df7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
build:
environment:
php: '5.5.25'
php: '7'
dependencies:
before:
- composer install
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
language: php

php:
- 5.5
- 5.6
- 7
- 7.1
- 7.2

before_install:
- sudo apt-get -qq update
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
}
],
"require": {
"php": ">=5.5.9",
"php": ">=7.0",
"ext-dom": "*",
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*",
"illuminate/support": "5.5.*|5.6.*",
"doctrine/dbal": "^2.5",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*"
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.0|^7.0",
"orchestra/testbench": "3.5.*|3.6.*"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CAS Server for Laravel

laravel_cas_server is a Laravel package that implements the server part of [CAS protocol](https://apereo.github.io/cas/4.2.x/protocol/CAS-Protocol-Specification.html) v1/v2/v3 without the proxy ticket part.
laravel_cas_server is a Laravel package that implements the server part of [CAS protocol](https://apereo.github.io/cas/4.2.x/protocol/CAS-Protocol-Specification.html) v1/v2/v3.

Currently this package works for Laravel 5.1/5.2/5.3/5.4 .
This package works for Laravel 5.5/5.6 . Please check 2.x branch if you are using Laravel 5.1 - 5.4 .

[![Latest Version](http://img.shields.io/github/release/leo108/laravel_cas_server.svg)](https://github.com/leo108/laravel_cas_server/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE)
Expand All @@ -12,7 +12,7 @@ Currently this package works for Laravel 5.1/5.2/5.3/5.4 .

## Requirements

- PHP >=5.5.9
- PHP >=7.0

## Installation && Usage

Expand Down

0 comments on commit 8724df7

Please sign in to comment.