Download the PHP package dreadlabs/vantomas without Composer

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

vantomas

A TYPO3.CMS project encapsulating the website www.van-tomas.de

Build status

Build Status

Table of contents

Prerequisites

To run the project locally, make sure you have installed VirtualBox and vagrant.

Please activate ssh agent forwarding and SSH key authentification on the remote server if you want to make use of database/file syncing or rsync deployment.

The provision, build, downsync and deploy processes uses ansible. Please ensure it's installed on your host machine.

TL;DR

.env file

The project is operating with environment files in order to separate code from configuration. See the file .env.dist shipped with this project, adjust to your needs and ensure it will be available from the project root directory.

For more information, read the Config section of the "The Twelve Factor App" manifest. For a controversial consideration, please read Environment Variables Considered Harmful for Your Secrets.

Installation

~ $ php composer.phar create-project -s dev dreadlabs/vantomas
~ $ cd vantomas
~ $ vagrant up

Hint: to re-run provision, you can do so by executing one of the following commands:

~ $ vagrant provision

or

~ $ ansible-playbook ./.ansible/playbooks/provision.yml

Build

~ $ ansible-playbook .ansible/playbooks/build.yml

Release

The release defaults to Pull releases with Travis.

You can Push release if you're not using a Continuous Integration system.

Syncing

Please read the Release Inventory chapter and make sure you created proper inventory groups as they are important also for downsyncing data from remotes.

After that you're able to downsync database and files with the following command:

~$ ansible-playbook .ansible/playbooks/downsync-data.yml -i .ansible/inventories/nicknack_<testing|production>

You can split the process further down with using tags targeting a specific part of the downsync:

~$ ansible-playbook .ansible/playbooks/downsync-data.yml -i .ansible/inventories/nicknack --limit <production|testing> [-t <database|files>]

Import via:

~$ .script/console db -h db <Database name> -e "SET names 'utf8'; SOURCE /app/data/db/<dump name>.sql;"

Running phinx migration from cli

The phinx.yml makes usage of the environment variables described in the .env file section. To source the variables and execute phinx you can issue one of the following commands:

# posix shell
#
# The -a switch exports all variables, so that they are available to the program.
#
# @source: http://serverfault.com/a/540484
#
~ $ sh -ac '. ./.env; vendor/bin/phinx command [options] [arguments]'

# bash
#
# @source: http://stackoverflow.com/a/30969768
#
~ $ bash -c 'set -o allexport; source .env; vendor/bin/phinx command [options] [arguments]'

Todo

Evaluate integration of http://serverfault.com/a/316100 (ssh-keygen / ssh-keyscan for ~/.ssh/known_hosts)

How to...

  1. ...see what hosts would be affected by a playbook before I run it?

    ansible-playbook playbook.yml --list-hosts
  2. ...compare remote and local directory to check rsync deployment

    diff <(ssh user@host ls -R /path/to/remote/folder/) <(ls -R /path/of/local/folder/) > diff.log
  3. ...get the latest annotated tag which targets only the current commit in the current branch?

    git describe --exact-match --abbrev=0

License

The following directories and their contents are Copyright Thomas Juhnke. You may not reuse anything therein without my permission:

Photo credit src/vantomas/Resources/Public/Images/sleeping-kittens.jpg:

sleeping kittens by Jimmy B, CC licensed

All other directories and files are GPL v2 Licensed. Feel free to use the HTML and CSS as you please. If you do use them, a link back to http://github.com/dreadwarrior/vantomas would be appreciated, but is not required.


All versions of vantomas with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
arg/tagcloud Version *@dev
typo3/cms Version ~7.6
typo3-ter/realurl Version ~2.1.4
dreadlabs/vantomas-website Version 7.0.0
dreadlabs/app-migration-typo3 Version ~0.1.3
vlucas/phpdotenv Version ~2.2.0
symfony/yaml Version ~2.8.1
typo3-ter/vhs Version 3.1.0
league/html-to-markdown Version ~4.2.0
michelf/php-markdown Version ~1.6.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 dreadlabs/vantomas contains the following files

Loading the files please wait ....