Git Product home page Git Product logo

bundleless's Introduction

Symfony without a Bundle? Welcome to Bundleless!

This is a very simple proof of concept. This package basically provides a bundle class which can be used to create "virtual" bundles. Virtual bundles only exists for the Symfony kernel, but for you it's just a package which uses bundle conventions (like automatic mapping for Entity/).

This can be used to remove the "bundle" from AppBundle. Let me tell you how to get this working for your application.

Install

This is pretty simple (if you're using Composer):

$ composer require wouterj/bundleless:1.*@dev

Edit

Use the new WouterJ\Bundleless\AppFocusedKernel as parent of your AppBundle:

// app/AppKernel.php

use WouterJ\Bundleless\AppFocusedKernel;

// ...
class AppKernel extends AppFocusedKernel
{
}

Then, remove that ugly AppBundle register line from your AppKernel. Bundeless will take care of it now.

// app/AppKernel.php

// ...
public function registerBundles()
{
    $bundles = array(
        // ...
        // comment or remove
        // new AppBundle\AppBundle();
}

Use

You're already ready! You should move your application code outside of the AppBundle by removing the namespace and putting it in src/ directly. For instance:

// src/Controller/StaticController.php
namespace Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class StaticController extends Controller
{
    /**
     * @Route("/")
     */
    public function homepageAction()
    {
        return $this->render('static/homepage.html.twig');
    }
}
# app/config/routing.yml
app:
    resource: "@App/Controller"
    type: annotation

That's it. Apart from the template file, you now have a working homepage!

Customize

You can customize 2 things in your AppKernel by defining properties:

  • $appPath (default: %kernel.root_dir%/../src): The root path for your application code. You can use the familair %kernel.root_dir% parameter;

  • $appNamespace (default: ''): The root namespace of your application code. You might want to set this to App to avoid naming conflicts.

License

This project is released under the MIT license, it's just 2 files anyway.

bundleless's People

Contributors

wouterj avatar zebba avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.