Download the PHP package austp/phpci-jasmine-node-plugin without Composer

On this page you can find all versions of the php package austp/phpci-jasmine-node-plugin. 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 phpci-jasmine-node-plugin

phpci-jasmine-node-plugin

This is a plugin for PHPCI. It allows you to run jasmine-node tests via PHPCI.

Installation

Note: This will not install jasmine-node for you. You will have to install that yourself.

  1. Navigate to your PHPCI path. cd /path/to/phpci
  2. Edit the composer.json file. nano composer.json
  3. Add "austp\/phpci-jasmine-node-plugin": "~1.1" in the "require" section.

    "require": {
        ...,
        ...,
        "austp\/phpci-jasmine-node-plugin": "~1.1"
    }
  4. Download the plugin via composer. composer update austp/phpci-jasmine-node-plugin
  5. Copy build-plugins/jasminenode.js to /path/to/phpci/public/assets/js/build-plugins/jasminenode.js

    cd /path/to/phpci/vendor/austp/phpci-jasmine-node-plugin/build-plugins
    cp jasminenode.js /path/to/phpci/public/assets/js/build-plugins/jasminenode.js

That's it as far as installation goes. Continue reading to see available options.

Configuration

In order to configure PHPCI to run jasmine-node, you need to edit the phpci.yml file. If you don't already have this file in your repository, go ahead and add it. Note: If you can't add a phpci.yml file to the repo, you can edit your project in PHPCI and configure it there.

Options

executable: "/path/to/jasmine-node" | Full path to a jasmine-node executable.
directory:  "specs/"                | The directory to run the tests on.
log:        true                    | (optional) Log jasmine-node's output to PHPCI.

phpci.yml

  1. Navigate to your repository. cd /path/to/repo
  2. Edit the phpci.yml file. nano phpci.yml
  3. Add \PHPCI_Jasmine_Node_Plugin\Jasmine_Node: in the "test" section.

    test:
      ...:
        ...: ...
        ...: ...
      ...:
        ...: ...
      \PHPCI_Jasmine_Node_Plugin\Jasmine_Node:
  4. Add your options under the \PHPCI_Jasmine_Node_Plugin\Jasmine_Node: line.

    \PHPCI_Jasmine_Node_Plugin\Jasmine_Node:
      executable: "/path/to/jasmine-node"
      directory: "specs/"
      log: true

All versions of phpci-jasmine-node-plugin with dependencies

PHP Build Version
Package Version
No informations.
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 austp/phpci-jasmine-node-plugin contains the following files

Loading the files please wait ....