Skip to content

Instantly share code, notes, and snippets.

@yourwebmaker
yourwebmaker / structure-1.md
Last active January 15, 2016 15:10
How to better organize files in non-framework PHP projects. Como organizar melhor arquivos em projetos PHP que não usam frameworks
/public/
    /js/
        /jquery.js
        /app.js
    /css/
        app.css
        some-optional-css-framework.css
    /index.php
 /config.php
@MustafaMagdi
MustafaMagdi / Container.php
Last active April 17, 2024 19:14 — forked from tlikai/container.php
PHP Dependency Injection Container
<?php
/**
* Class Container
*/
class Container
{
/**
* @var array
*/