Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RWOverdijk/AssetManager
AssetManager written for zf2. Managing assets for zend framework 2
https://github.com/RWOverdijk/AssetManager
Last synced: 3 months ago
JSON representation
AssetManager written for zf2. Managing assets for zend framework 2
- Host: GitHub
- URL: https://github.com/RWOverdijk/AssetManager
- Owner: RWOverdijk
- License: bsd-2-clause
- Created: 2012-08-13T14:12:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-06-14T17:10:30.000Z (over 1 year ago)
- Last Synced: 2024-05-17T09:02:53.400Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 550 KB
- Stars: 211
- Watchers: 27
- Forks: 82
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zf - AssetManager - AssetManager - Managing assets for ZF2. (Uncategorized / Uncategorized)
README
# AssetManager
By [Wesley Overdijk](https://spoonx.studio/) and [Marco Pivetta](http://ocramius.github.com/)[![Build Status](https://secure.travis-ci.org/RWOverdijk/AssetManager.png?branch=master)](http://travis-ci.org/RWOverdijk/AssetManager)
[![Latest Stable Version](https://poser.pugx.org/RWOverdijk/AssetManager/v/stable.png)](https://packagist.org/packages/RWOverdijk/AssetManager)## ⚠️ No longer maintained
Every now and then a PR might be merged, but it's probably for the best to use a fork.
PRs without enough reputable approvals will not be merged.
## Introduction
This module is intended for usage with a default directory structure of a
[LaminasSkeletonApplication](https://github.com/laminas/laminas-mvc-skeleton/). It provides functionality to load
assets and static files from your module directories through simple configuration.
This allows you to avoid having to copy your files over to the `public/` directory, and makes usage of assets very
similar to what already is possible with view scripts, which can be overridden by other modules.
In a nutshell, this module allows you to package assets with your module working *out of the box*.## Installation
1. Require assetmanager:
```sh
./composer.phar require rwoverdijk/assetmanager
# When asked for a version, type "2.*" when using Laminas. When using Zend Framework type "1.*"
```## Usage
Take a look at the **[wiki](https://github.com/RWOverdijk/AssetManager/wiki)** for a quick start and more information.
A lot, if not all of the topics, have been covered in-dept there.**Sample module config:**
```php
array(
'resolver_configs' => array(
'collections' => array(
'js/d.js' => array(
'js/a.js',
'js/b.js',
'js/c.js',
),
),
'paths' => array(
__DIR__ . '/some/particular/directory',
),
'map' => array(
'specific-path.css' => __DIR__ . '/some/particular/file.css',
),
),
'filters' => array(
'js/d.js' => array(
array(
// Note: You will need to require the classes used for the filters yourself.
'filter' => 'JSMin',
),
),
),
'view_helper' => array(
'cache' => 'Application\Cache\Redis', // You will need to require the factory used for the cache yourself.
'append_timestamp' => true, // optional, if false never append a query param
'query_string' => '_', // optional
),
'caching' => array(
'js/d.js' => array(
'cache' => 'Apc',
),
),
),
);
```*Please be careful, since this module will serve every file as-is, including PHP code.*
## Questions / support
If you're having trouble with the asset manager there are a couple of resources that might be of help.
* Join us on gitter [![Gitter chat](https://badges.gitter.im/SpoonX/Dev.png)](https://gitter.im/SpoonX/Dev)
* The [FAQ wiki page](https://github.com/RWOverdijk/AssetManager/wiki/FAQ), where you'll perhaps find your answer.
* [RWOverdijk at irc.freenode.net #zftalk.dev or #spoonx](http://webchat.freenode.net/?channels=zftalk.dev%2Czftalk%2Cspoonx&uio=MTE9MTAz8d)
* [Issue tracker](https://github.com/RWOverdijk/AssetManager/issues). (Please try to not submit unrelated issues).## Todo
The task list has been slimmed down a lot lately. However, there are still a couple of things that should be done.* Renewing the cache