-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate project to new organisation.
- Loading branch information
Showing
42 changed files
with
265 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,54 @@ | ||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | ||
|
||
on: | ||
- pull_request | ||
- push | ||
- pull_request | ||
- push | ||
|
||
name: "Continuous Integration" | ||
|
||
jobs: | ||
run: | ||
name: "Grumphp" | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macOS-latest] | ||
php-versions: ['7.1', '7.2', '7.3', '7.4'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: xdebug | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v1 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader | ||
|
||
- name: Run Grumphp | ||
run: vendor/bin/grumphp run | ||
env: | ||
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | ||
|
||
- name: Scrutinizer | ||
run: vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml | ||
run: | ||
name: "Grumphp" | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
operating-system: [ubuntu-latest, windows-latest, macOS-latest] | ||
php-versions: ['7.1', '7.2', '7.3', '7.4'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: xdebug,mbstring | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v1 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install dependencies | ||
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader | ||
|
||
- name: Run Grumphp | ||
run: vendor/bin/grumphp run | ||
env: | ||
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | ||
|
||
- name: Scrutinizer | ||
run: | | ||
wget https://scrutinizer-ci.com/ocular.phar | ||
php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml | ||
continue-on-error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2020, ECPHP | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
From October 2019: | ||
- Pol Dellaiera: https://github.com/loophp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
[![Latest Stable Version](https://img.shields.io/packagist/v/drupol/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/cas-bundle) | ||
[![GitHub stars](https://img.shields.io/github/stars/drupol/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/cas-bundle) | ||
[![Total Downloads](https://img.shields.io/packagist/dt/drupol/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/cas-bundle) | ||
[![Build Status](https://img.shields.io/travis/drupol/cas-bundle/4.4.svg?style=flat-square)](https://travis-ci.org/drupol/cas-bundle) | ||
[![Scrutinizer code quality](https://img.shields.io/scrutinizer/quality/g/drupol/cas-bundle/4.4.svg?style=flat-square)](https://scrutinizer-ci.com/g/drupol/cas-bundle/?branch=4.4) | ||
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/drupol/cas-bundle/4.4.svg?style=flat-square)](https://scrutinizer-ci.com/g/drupol/cas-bundle/?branch=4.4) | ||
[![Mutation testing badge](https://badge.stryker-mutator.io/github.com/drupol/cas-bundle/4.4)](https://stryker-mutator.github.io) | ||
[![Read the Docs](https://img.shields.io/readthedocs/cas-bundle?style=flat-square)](https://cas-bundle.readthedocs.io/) | ||
[![License](https://img.shields.io/packagist/l/drupol/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/drupol/cas-bundle) | ||
[![Say Thanks!](https://img.shields.io/badge/Say-thanks-brightgreen.svg?style=flat-square)](https://saythanks.io/to/drupol) | ||
[![Donate!](https://img.shields.io/badge/Donate-Paypal-brightgreen.svg?style=flat-square)](https://paypal.me/drupol) | ||
|
||
[![Latest Stable Version](https://img.shields.io/packagist/v/ecphp/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/ecphp/cas-bundle) | ||
[![GitHub stars](https://img.shields.io/github/stars/ecphp/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/ecphp/cas-bundle) | ||
[![Total Downloads](https://img.shields.io/packagist/dt/ecphp/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/ecphp/cas-bundle) | ||
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/ecphp/cas-bundle/Continuous%20Integration/1.0?style=flat-square)](https://github.com/ecphp/cas-bundle/actions) | ||
[![Scrutinizer code quality](https://img.shields.io/scrutinizer/quality/g/ecphp/cas-bundle/1.0.svg?style=flat-square)](https://scrutinizer-ci.com/g/ecphp/cas-bundle/?branch=1.0) | ||
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/ecphp/cas-bundle/1.0.svg?style=flat-square)](https://scrutinizer-ci.com/g/ecphp/cas-bundle/?branch=1.0) | ||
[![Read the Docs](https://img.shields.io/readthedocs/ecphp-cas-bundle?style=flat-square)](https://ecphp-cas-bundle.readthedocs.io/) | ||
[![License](https://img.shields.io/packagist/l/ecphp/cas-bundle.svg?style=flat-square)](https://packagist.org/packages/ecphp/cas-bundle) | ||
|
||
# CAS Bundle | ||
|
||
A CAS bundle for Symfony 4 & 5. | ||
|
||
Read more on the dedicated documentation site: https://cas-bundle.readthedocs.io/ | ||
Read more on the dedicated documentation site: https://ecphp-cas-bundle.readthedocs.io/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
cas: | ||
base_url: https://heroku-cas-server.herokuapp.com/cas | ||
protocol: | ||
login: | ||
path: /login | ||
allowed_parameters: | ||
- service | ||
- renew | ||
- gateway | ||
default_parameters: | ||
service: cas_bundle_homepage | ||
serviceValidate: | ||
path: /p3/serviceValidate | ||
allowed_parameters: | ||
- service | ||
- pgtUrl | ||
- renew | ||
- format | ||
default_parameters: | ||
format: JSON | ||
#pgtUrl: cas_bundle_proxy_callback | ||
logout: | ||
path: /logout | ||
allowed_parameters: | ||
- service | ||
default_parameters: | ||
service: cas_bundle_homepage | ||
proxy: | ||
path: /proxy | ||
allowed_parameters: | ||
- targetService | ||
- pgt | ||
proxyValidate: | ||
path: /p3/proxyValidate | ||
allowed_parameters: | ||
- service | ||
- ticket | ||
- pgtUrl | ||
- format | ||
default_parameters: | ||
format: JSON | ||
#pgtUrl: cas_bundle_proxy_callback | ||
base_url: https://heroku-cas-server.herokuapp.com/cas | ||
protocol: | ||
login: | ||
path: /login | ||
allowed_parameters: | ||
- service | ||
- renew | ||
- gateway | ||
default_parameters: | ||
service: cas_bundle_homepage | ||
serviceValidate: | ||
path: /p3/serviceValidate | ||
allowed_parameters: | ||
- service | ||
- pgtUrl | ||
- renew | ||
- format | ||
default_parameters: | ||
format: JSON | ||
#pgtUrl: cas_bundle_proxy_callback | ||
logout: | ||
path: /logout | ||
allowed_parameters: | ||
- service | ||
default_parameters: | ||
service: cas_bundle_homepage | ||
proxy: | ||
path: /proxy | ||
allowed_parameters: | ||
- targetService | ||
- pgt | ||
proxyValidate: | ||
path: /p3/proxyValidate | ||
allowed_parameters: | ||
- service | ||
- ticket | ||
- pgtUrl | ||
- format | ||
default_parameters: | ||
format: JSON | ||
#pgtUrl: cas_bundle_proxy_callback |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
framework: | ||
http_client: | ||
default_options: | ||
verify_peer: false | ||
verify_host: false | ||
http_client: | ||
default_options: | ||
verify_peer: false | ||
verify_host: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
cas_bundle: | ||
resource: '@CasBundle/Resources/routing.xml' | ||
prefix: /cas | ||
resource: '@CasBundle/Resources/routing.xml' | ||
prefix: /cas |
Oops, something went wrong.