This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Create a Jigsaw site" | |
extra: | |
rr: | |
packages: | |
"recipe-runner/io-module": "1.0.x-dev" | |
"recipe-runner/system-module": "1.0.x-dev" | |
steps: | |
- name: "Infrastructure" | |
actions: | |
- name: "Name of the site" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once '/path/to/lib/Twig/Autoloader.php'; | |
/** | |
* A factory for create Twig instances | |
* | |
* @author Victor Puertas <[email protected]> | |
* | |
* Usage: | |
* <code> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once __dir__.'/vendor/autoload.php'; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; | |
/** | |
* Simple skeleton for Silex | |
* | |
* Run in PHP >=5.4: $ php -S localhost:8080 -t web web/index.php |