Skip to content

Instantly share code, notes, and snippets.

@giovanisilveira
giovanisilveira / structure-1.md
Created January 15, 2016 15:10 — forked from yourwebmaker/structure-1.md
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
@giovanisilveira
giovanisilveira / Container.php
Created November 28, 2021 01:33 — forked from MustafaMagdi/Container.php
PHP Dependency Injection Container
<?php
/**
* Class Container
*/
class Container
{
/**
* @var array
*/