1. Go to this page and download the library: Download summerstreet/woodling library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Woodling/Woodling;
// Single path
Woodling::core()->finder->addPaths('src/Acme/DemoBundle/Tests/blueprints');
// Several paths
Woodling::core()->finder->addPaths(array(
'/absolute/path/to/blueprints',
'relative/path/to/blueprints'
));
// Search in new paths
Woodling::core()->finder->findBlueprints();
// Looks in these destinations:
// - tests/blueprints/*.php
// - tests/blueprints.php
Woodling::core()->finder->addPaths('tests/blueprints');