Download the PHP package lin3s/symfony-standard without Composer

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

Symfony Standard

The "Symfony Standard" distribution in the LIN3S way.

SensioLabsInsight Scrutinizer Code Quality Total Downloads      Latest Stable Version Latest Unstable Version

Why?

Symfony is a set of reusable PHP components and a PHP framework for web projects. In LIN3S we implement this solution providing some useful features that the standard edition of Symfony doesn't come with:

  1. SonataAdminBundle
  2. SonataUserBundle
    • Dependencies not included in this file.
  3. Doctrine Migrations
  4. LiipImagineBundle
  5. StofDoctrineExtensions
  6. Front-end workflow
  7. Capistrano deploy
  8. A complete base.html.twig based on HTML5 Boilerplate
  9. As dev dependency, Doctrine Fixtures
  10. Coding standards library made by LIN3S

Prerequisites

The above sounds great so, now, to start developing with our Symfony Standard, you need to meet the following requirements:

  1. PHP 5.4 or higher
  2. MySQL or [MongoDB][178]
  3. Composer: curl -sS https://getcomposer.org/installer | php
  4. Ruby
    • Bundler: gem install bundler
    • After bundler: bundle install (see Gemfile)
  5. Node.js 4.0 or higher
    • Gulp.js: npm install -g gulp
    • ESLint: npm install -g eslint

Getting Started

After installing all the prerequisites, to create a Symfony project based on this Symfony Standard, you should follow these steps.

Firstly, you need to create the project:

If your app/config/parameters.yml file was not created right after finishing the composer process, the system will ask you some questions in order to create the needed file. If you want to create it by hand, just copy the app/config/parameters.yml.dist file: $ cp app/config/parameters.yml.dist app/config/parameters.yml

If the process fails as soon as it finishes, it's because the database is not created yet. Run php app/console doctrine:database:create in order to create it and then create the needed tables with php app/console doctrine:migrations:migrate command.

After that, if you use a Web server, you should visit the Symfony permissions section of the installation documentation so your CLI user and Web server user are allowed to write cache, logs and *sessions** folders. You may use these commands:

Also, if you are using Apache Web server, consider renaming .htaccess.dist files located within the app, src and web folders to .htaccess or create the proper server configuration to improve global performances.

If you are willing to use LiipImagineBundle, create the needed folder:

You can modify this path editing the cache parameter in the liip_imagine section within the app/config/config.yml file. Also remember to give this folder the right permissions so the web server is allowed to write.

If you want to load some default users, run the following command in order to create an admin/admin account and 50 fake users:

Also, if you want to create an admin user by hand, follow these steps:

In order to use the built-in server, use the following command:

Access to your admin panel by going to <domain>/admin

A complete app/Resources/views/base.html.twig file is provided by default. Be sure to modify this file and override the meta blocks whenever it's needed. Commented out you can find usefull examples with the full information links and validators.

We improved the production logs managed by monolog. Edit app/config/config_prod.yml so it suits your needs.

If you are planning to add some tests, be sure to edit your composer.json autoload section with something like this:

Also, if your development IDE is PhpStorm, uncomment the following line in app/config/config.yml:

Front-end workflow

First of all, download all the dependencies needed for Ruby and Node.js:

Feel free to add and/or edit the npm dependencies by editing the package.json file.

After this initial step, you will have the following gulp tasks available:

As you see, you should create and/or edit .scss files within the app/Resources/assets/scss/ folder. An initial structure is already given for you. You can also add/or edit .js files, but remember to modify gulpfile.js jsFiles variable in order to add what your project needs, adding the new files to base.html.twig too.

Also, livereload is up and running when launching gulp watch. You should install the correct browser extension and be sure to navigate through the dev environment.

Doctrine Extensions

This bundle is installed by default. You just have to enable what your project needs, for example:

Some extensions do need an extra configuration in the doctrine section of the app/config/config.yml file. Check the full configuration here.

For the other possible configurations, visit the bundle documentation

Doctrine Migrations

Capistrano will run the needed migrations when running a deployment. You just need to generate the correct files within the app/migrations folder. In order to do so, just run php app/console doctrine:migrations:diff and push the generated file to your SCM before runnning the deploy.

For other possible configurations, visit the bundle documentation

Deployment

To automatize the deployment process this project is using Capistrano with capistrano-symfony plugin. You can find the whole configuration within the deploy directory. Customize deploy tasks modifying the deploy/deploy.rb file.

You should update the symfony-standard application name for your awesome project name and the repo url with your Git project url.

Inside deploy/stages directory there are two files that can be considered as pre-production stage and production stage. There is no logic, these files only contain few parameters that you should customize for your proper deployment.

After all, and following the Capistrano documentation to configure the server, you can deploy executing:

In the Capistrano shared directory you should create the app/config/parameters.yml file, app/logs, app/sessions and web/uploads folder should be created for you.

Clearing remote caches

When working with PHP7 & Opcache, for example, you won't see all changes after deploying. Caches need to be flushed with the correct website domain. If you need this feature, just open the deploy.rb file and remove the commented line:

This is done by Smart-Core/AcceleratorCacheBundle. If you need different configurations for your deployment stages, feel free to create a variable and add the required parameters to the stages/*.rb files.


All versions of symfony-standard with dependencies

PHP Build Version
Package Version
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 lin3s/symfony-standard contains the following files

Loading the files please wait ....