Download the PHP package triaubaral/phaster without Composer

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

= Phaster

Collection of meta tasks based on phing in order to make your build process easy.

== Installation

The installation of phaster is a two steps process. First you install phaster with composer then your need to execute a custom phing script.

  1. Composer

The preferred method to install Phaster is through Composer. Add triaubaral/phaster to the require-dev or require section of your project's composer.json configuration file, and run 'composer install': [source, bash]

{
"require-dev": { "phing/phing": "^2.16" "triaubaral/phaster": "@dev" } }


  1. Custom Phing Script

Copy/paste the following command in your terminal

./vendor/bin/phing -f vendor/triaubaral/phaster/build.xml phaster:install -Dprofil=dev

[IMPORTANT]

The -Dprofil accepted values are : dev, qualif or prod

It installs into src/resources/phaster a directory tree contening all meta tasks It installs into the directory where the preceding command has been done a build.xml file

== Check your installation

The command :

[source, bash]

./vendor/bin/phing -l


will give the following output for the dev profil :

[source, bash]

Collection of meta task based on phing in order to make your build process easy Default target:

phaster:props

Main targets:

00:source:prepare Clean working dir 01:source:clone Copy source and test dir to a build dir 02:source:resolve Resolve source dependencies 03:source:compile Compile source code 04:source:score Analyse source and test written quality 05:source:test Execute unit tests 06:source:track Deploy source code 07:source:package Transform source code into binary format 08:binary:deploy Deploy binary 09:binary:resolve Current build's external dependencies installation to make the app to run 10:binary:host Current build installation on specific infrastructure 11:binary:test Execute functionnal tests 12:binary:score Execute performance tests

== How it works !

As mentionned above those tasks are meta !! You have to implement them in order to feet your current build need. They are only the representation of what I consider a quality build.


All versions of phaster with dependencies

PHP Build Version
Package Version
Requires php Version >=5.2.0
symfony/yaml Version ^3.1 || ^4.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 triaubaral/phaster contains the following files

Loading the files please wait ....