Download the PHP package gamajo/codeception-redirects without Composer

On this page you can find all versions of the php package gamajo/codeception-redirects. 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 codeception-redirects

Codeception Redirects Module

Uses the REST module to check URLs for Location response headers and 301 HTTP Status response codes, or redirects between protocols.

Handy for checking that .htaccess or other methods of web page redirects have been set up correctly.

If test fails stores last shown page in output dir.

Status

Please review the code of non-stable modules and provide patches if you have issues.

Configuration

None, but ensure that the REST module is enabled and has a url set.

Example (acceptance.suite.yml)

modules:
    enabled:
        - Redirects
        - REST:
            url: 'http://localhost'

Example Usage

301 Permanent Redirects

Here's a Cest which checks 301 redirects. We turn off automatic following of redirects in the Symfony Browserkit client, so that it doesn't just follow the redirects to the final destination.

Grouping the tests like these mean you can run individual groups of tests more easily:

307 Temporary Redirects

The above example code also applies to checking for 307 Temporary Redirect, except the seeTemporaryRedirectBetween() method is used instead of seePermanentRedirectBetween().

Protocol Redirects

Here's a Cest which checks protocol redirects, to see if a URL is forced to be served as http:// or https://.

Public API

Methods expected to be used in Cepts and Cests.

followRedirects

Sets whether to automatically follow redirects or not.

seeRedirectBetween

Check that the specified HTTP Status is returned with the correct Location URL. Fails if either is missing, or Location header value does not match the $url. Automatically avoids following redirects.

seePermanentRedirectBetween

A convenience method to check that a 301 HTTP Status is returned with the correct Location URL. Fails if either is missing, or Location header value does not match the $url. Automatically avoids following redirects.

seeTemporaryRedirectBetween

A convenience method to check that a 307 HTTP Status is returned with the correct Location URL. Fails if either is missing, or Location header value does not match the $url. Automatically avoids following redirects.

urlDoesNotRedirect

Check that a 200 HTTP Status is returned and the URL has no redirects. Allows the possibility of following redirects.

seeHttpProtocolAlwaysUsedFor

Check that a 200 HTTP Status is eventually returned with the HTTP protocol. Follows redirects automatically.

seePermanentRedirectToHttpsFor

Check that a 200 HTTP Status is eventually returned with the HTTPS protocol. Follows redirects automatically.


All versions of codeception-redirects with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
codeception/codeception Version ^2.5 || ^3.0
roave/security-advisories Version dev-master
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 gamajo/codeception-redirects contains the following files

Loading the files please wait ....