Download the PHP package turanct/omikron without Composer

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

Omikron Test Framework

Travis CI

A simple, functional programming inspired, test framework.

This project was started as a reaction to this issue and was initially a gist. It's currently not meant to be used in production, but there's nobody stopping you if you want to.

Usage

Installing it is easy, just require turanct/omikron as a development dependency in your composer.json file, and configure a bin-dir. The omikron executable will be available in your bin directory when you've run composer install.

Omikron has a concept of topics, topics are distinct parts of your code under test. These topics have different features, and to describe those features, there are assertions.

This is an example of a topic. It's in a file named topics/topic-calculus.php. Every topic file must have a name starting with topic-. You can split topics over multiple files if you want to. The topic calculus has two features, addition and subtraction, and both of those features have some assertions.

To run the tests for this topic, we'll just run bin/omikron topics (as topics is the directory with my topics). The output will be something like this:

Tests

Omikron has unit tests, located in the tests directory. These tests are written using Omikron itself, so you can just run the Omikron executable on the tests dir!

Contributing

Feel free to fork and send pull requests!


All versions of omikron with dependencies

PHP Build Version
Package Version
Requires sebastian/diff Version ~1.2.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 turanct/omikron contains the following files

Loading the files please wait ....