Download the PHP package jacekkow/uphpcas without Composer

On this page you can find all versions of the php package jacekkow/uphpcas. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package uphpcas

uphpCAS

Simple PHP library for CAS authentication

Build Status

Introduction

This library intends to be a replacement for overly complex phpCAS library.

It only supports basic CAS protocol, without proxying capabilities, which is enough for website authentication.

Usage

Composer

  1. Add jacekkow/uphpcas dependency:

  2. Include autoloader in your application:

  3. See the usage examples below

Raw usage

  1. Download uphpCAS.php
  2. Include it in your application:

  3. See the usage examples below

Examples

Require authentication

To require authentication to access the page:

Login and logout pages

index.php:

login.php:

logout.php:

Common issues

Invalid redirection from CAS server

By default uphpCAS tries to guess correct URL to pass to CAS server as a "service" parameter using values from $_SERVER superglobal (see getCurrentUrl() method). This URL is used by CAS server to redirect user back to the application after successful CAS login.

If this guess is incorrect, eg. when the server is behind proxy, you can override it using setServiceUrl() method:

or second argument of the constructor:

HTTP POST issues

The standard method of passing "ticket" from CAS server to application is by HTTP GET method. To avoid having additional "ticket" parameter in the URL on single-page apps, which can expire and cause uphpCAS to throw exception, this library uses POST method by default.

You can change the method back to HTTP GET with setMethod():

CAS over HTTPS

This library enforces CAS certificate validation. The hostname of the CAS server must match the one in provided SSL certificate. Also the certificate must be signed by CA included in CA store (or self-signed - then the certificate itself must be included). By default it looks for CA store at:

You can change path to CA store file using setCaFile() method:


All versions of uphpcas with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jacekkow/uphpcas contains the following files

Loading the files please wait ....