Skip to content

A filesystem-like repository for storing arbitrary resources.

License

Notifications You must be signed in to change notification settings

puli/repository

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2602e10 · Aug 15, 2016
Jan 14, 2016
Aug 15, 2016
Feb 1, 2016
Jan 12, 2016
Jan 6, 2016
Dec 2, 2014
Aug 15, 2016
Jan 6, 2016
Feb 5, 2016
Jan 31, 2014
Feb 5, 2016
Jan 6, 2016
Aug 9, 2016
Feb 23, 2014

Repository files navigation

The Puli Repository Component

Build Status Build status Scrutinizer Code Quality Latest Stable Version Total Downloads Dependency Status

Latest release: 1.0.0-beta10

PHP >= 5.3.9

The Puli Repository Component provides an API for storing arbitrary resources in a filesystem-like repository:

use Puli\Repository\InMemoryRepository;
use Puli\Repository\Resource\DirectoryResource;

$repo = new InMemoryRepository();
$repo->add('/config', new DirectoryResource('/path/to/resources/config'));

// /path/to/resources/config/routing.yml
echo $repo->get('/config/routing.yml')->getBody();

The following ResourceRepository implementations are currently supported:

The following Resource implementations are currently supported:

Authors

Installation

Follow the [Getting Started] guide to install Puli in your project.

Documentation

Read the Puli Documentation to learn more about Puli.

Contribute

Contributions to Puli are always welcome!

Support

If you are having problems, send a mail to bschussek@gmail.com or shout out to @webmozart on Twitter.

License

All contents of this package are licensed under the MIT license.