Download the PHP package monkeycode/minisf without Composer

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

Symfony Minimal Edition

Symfony ME (pun not intended) is an opinionated minimal base install of the Symfony2 framework - sort of a middle ground between using Silex and the full blown Symfony SE install. Some concepts are heavily inspired by Benjamin's post on the subject.

For experienced Symfony2 developers, ME provides a clean starting point where you only add what you need. On the other hand, newcomers to Symfony2 can use this as a playground to understand how the full stack framework can be set up manually and in non-standard ways.

Disclaimer: This is not an official Symfony distribution, just a private project. While it is perfectly possible to build production projects on Symfony ME, it lacks some features from Symfony SE that are meant to enable SE to be used in a broad range of environments (for example, ME lacks the bootstrap.php.cache). If you use this for more than educational purposes, it is assumed that you know what you are doing.

The main differences compared to the Symfony Standard Edition are:

Bundles

Symfony ME comes with the Symfony core bundles plus the MonologBundle. Most other tools such as Assetic, FrameworkExtraBundle, Swiftmailer, Doctrine, etc. are missing from a default install.

Configuration

Following 12 factor app recommendations, all infrastructure parameters are configured using environment variables, down to setting the debug flag and the environment name. In consequence, there is no parameters.yml and the configuration file structure is simplified compared to Symfony SE.

To facilitate easy development with this approach, the kernel will use PHP dotenv to load environment vars if no var is found in the environment, or when the app is running using the built-in webserver. The names used for the environment variable checks can be set in the front controller when calling the kernel constructor.

For any kind of deployment other than development, configuration should take place exclusively through environment variables. No code or file changes from development are required.

Files and folder structure

Symfony ME uses a Symfony 3.0 inspired directory structure:

Installation

Create a project:

$ composer create-project monkeycode/minisf myproject

Symfony ME does not come with the or other composer script handlers. Therefore you also need to run:

$ cp .env.dist .env
$ bin/console assets:install --symlink

That's it, you're good to go.

Version Numbering

To enable staying in sync with official Symfony2 version numbers, ME uses a fourth version number sequence [sic] to denote bugfixes for all ME releases that are based on the same Symfony2 release.


All versions of minisf with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
symfony/symfony Version ~2.6
symfony/monolog-bundle Version ~2.6
twig/extensions Version ~1.0
vlucas/phpdotenv Version ~1.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 monkeycode/minisf contains the following files

Loading the files please wait ....