All Projects → gimler → Symfony Rest Edition

gimler / Symfony Rest Edition

Licence: mit
Fork from symfony-standard edition with additional rest features.

Projects that are alternatives of or similar to Symfony Rest Edition

Accompli
An easy to use and extendable deployment tool for (PHP) projects.
Stars: ✭ 9 (-98.6%)
Mutual labels:  symfony-application, symfony, composer
Composer Service
Composer as a service
Stars: ✭ 175 (-72.78%)
Mutual labels:  symfony-application, symfony, composer
Platform Application
OroPlatform - business application management system that is a backbone of the OroCRM and OroCommerce.
Stars: ✭ 211 (-67.19%)
Mutual labels:  symfony-application, symfony
Core
Zikula Core Framework
Stars: ✭ 213 (-66.87%)
Mutual labels:  symfony-application, symfony
Ezplatform
Meta repository that pulls in all dependencies for clean distribution of Ibexa Platform.
Stars: ✭ 322 (-49.92%)
Mutual labels:  symfony-application, symfony
Demo
Symfony Demo Application
Stars: ✭ 2,102 (+226.91%)
Mutual labels:  symfony-application, symfony
Symfony Ddd Wishlist
Wishlist, a sample application on Symfony 3 and Vue.js built with DDD in mind
Stars: ✭ 172 (-73.25%)
Mutual labels:  symfony-application, symfony
Phpdish
🏠 PHPDish is a powerful forum system written in PHP. It is based on the Symfony PHP Framework.
Stars: ✭ 225 (-65.01%)
Mutual labels:  symfony-application, symfony
Symfony 3 Rest Api Example
Symfony 3 RESTful API Example
Stars: ✭ 90 (-86%)
Mutual labels:  symfony-application, symfony
Dog Ceo Api
The API hosted at dog.ceo
Stars: ✭ 393 (-38.88%)
Mutual labels:  symfony, composer
Cmf Sandbox
Base project for trying CMF components integration
Stars: ✭ 368 (-42.77%)
Mutual labels:  symfony-application, symfony
Ec Cube
EC-CUBE is the most popular e-commerce solution in Japan
Stars: ✭ 591 (-8.09%)
Mutual labels:  symfony-application, symfony
Sylius Standard
Open Source eCommerce Application on top of Symfony
Stars: ✭ 165 (-74.34%)
Mutual labels:  symfony-application, symfony
Symfony Demo App
A Symfony demo application with basic user management
Stars: ✭ 122 (-81.03%)
Mutual labels:  symfony-application, symfony
Paraunit
Run PHPUnit tests in parallel
Stars: ✭ 104 (-83.83%)
Mutual labels:  symfony-application, symfony
Easy Admin Demo
A demo application to showcase EasyAdmin features
Stars: ✭ 219 (-65.94%)
Mutual labels:  symfony-application, symfony
Symfony Console Autocomplete
Shell autocompletion for Symfony Console based scripts
Stars: ✭ 465 (-27.68%)
Mutual labels:  symfony, composer
Kimai2
Kimai v2 is a web-based multiuser time-tracking application. Free for everyone: freelancers, agencies, companies, organizations - all can track their times, generate invoices and more. SaaS version available at https://www.kimai.cloud
Stars: ✭ 1,216 (+89.11%)
Mutual labels:  symfony-application, symfony
Web Publisher
Superdesk Publisher - the next generation publishing platform for journalists and newsrooms.
Stars: ✭ 82 (-87.25%)
Mutual labels:  symfony-application, symfony
Flex
Composer plugin for Symfony
Stars: ✭ 3,731 (+480.25%)
Mutual labels:  symfony, composer

Symfony REST Edition

Build Status Total Downloads

Welcome to the Symfony REST Edition - a fully-functional Symfony2 application that you can use as the skeleton for your new applications.

This document contains information on how to download, install, and start using Symfony. For a more detailed explanation, see the Installation chapter of the Symfony Documentation.

  1. Installing the REST Edition

When it comes to installing the Symfony REST Edition, you have the following options.

Use Composer (recommended)

As Symfony uses Composer to manage its dependencies, the recommended way to create a new project is to use it.

If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:

curl -s http://getcomposer.org/installer | php

Then, use the create-project command to generate a new Symfony application:

php composer.phar create-project gimler/symfony-rest-edition --stability=dev path/to/install

Composer will install Symfony and all its dependencies under the path/to/install directory.

Download an Archive File

To quickly test Symfony, you can also download an archive of the Standard Edition and unpack it somewhere under your web server root directory.

If you downloaded an archive "without vendors", you also need to install all the necessary dependencies. Download composer (see above) and run the following command:

php composer.phar install
  1. Checking your System Configuration

Before starting coding, make sure that your local system is properly configured for Symfony.

Execute the check.php script from the command line:

php app/check.php

Access the config.php script from a browser:

http://localhost/path/to/symfony/app/web/config.php

If you get any warnings or recommendations, fix them before moving on.

  1. Browsing the Demo Application

Congratulations! You're now ready to use Symfony.

From the config.php page, click the "Bypass configuration and go to the Welcome page" link to load up your first Symfony page.

You can also use a web-based configurator by clicking on the "Configure your Symfony Application online" link of the config.php page.

To see a real-live Symfony page in action, access the following page:

web/app_dev.php/notes

Using the console after installing httpie.org or some other http client you can run some commands to test the API as well:

http "http://symfony-rest-edition.lo/app_dev.php/notes" --json -a restapi:secretpw
http POST "http://symfony-rest-edition.lo/app_dev.php/notes" --json -a restapi:secretpw < note.json
http "http://symfony-rest-edition.lo/app_dev.php/notes/0" --json -a restapi:secretpw
http "http://symfony-rest-edition.lo/app_dev.php/notes/0" "Accept:application/json;version=1.0" -a restapi:secretpw
http DELETE "http://symfony-rest-edition.lo/app_dev.php/notes/0" --json -a restapi:secretpw
http PUT "http://symfony-rest-edition.lo/app_dev.php/notes/0" --json -a restapi:secretpw < note.json
http PUT "http://symfony-rest-edition.lo/app_dev.php/notes/1" --json -a restapi:secretpw < note.json
http PUT "http://symfony-rest-edition.lo/app_dev.php/notes/2" --json -a restapi:secretpw < note.json
http PUT "http://symfony-rest-edition.lo/app_dev.php/notes/3" --json -a restapi:secretpw < note.json
http "http://symfony-rest-edition.lo/app_dev.php/notes?offset=1&limit=1" --json -a restapi:secretpw

To run the tests install PHPUnit 3.7+ and call:

phpunit -c app/
  1. Getting started with Symfony

This distribution is meant to be the starting point for your Symfony applications, but it also contains some sample code that you can learn from and play with.

A great way to start learning Symfony is via the Quick Tour, which will take you through all the basic features of Symfony2.

Once you're feeling good, you can move onto reading the official Symfony2 book.

A default bundle, AppBundle, shows you Symfony2 in action. After playing with it, you can remove it by following these steps:

  • delete the src/AppBundle directory;

  • remove the routing entries referencing AcmeBundle in app/config/routing_dev.yml;

  • remove the AcmeBundle from the registered bundles in app/AppKernel.php;

  • remove the web/bundles/acmedemo directory;

  • remove the security.providers, security.firewalls.login and security.firewalls.secured_area entries in the security.yml file or tweak the security configuration to fit your needs.

What's inside?

The Symfony REST Edition is configured with the following defaults:

  • Twig is the only configured template engine;

  • Translations are activated

  • Doctrine ORM/DBAL is configured;

  • Swiftmailer is configured;

  • Annotations for everything are enabled.

It comes pre-configured with the following bundles:

Enjoy!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].