File tree Expand file tree Collapse file tree 3 files changed +24
-11
lines changed Expand file tree Collapse file tree 3 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 1
- DriebitHttpCacheBundle
2
- ======================
3
- [ ![ Build Status ] ( https://travis-ci.org/driebit/DriebitHttpCacheBundle.png?branch=master )] ( https://travis-ci.org/driebit/DriebitHttpCacheBundle )
4
- [ ![ Scrutinizer Quality Score ] ( https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/badges/quality-score.png?s=19e67940317eb4591d64bb3b116cbb30d7bb18b9 )] ( https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/ )
5
- [ ![ Code Coverage ] ( https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/badges/coverage.png?s=7d94f5c66673b8e3a61a27e294e4f1a975bcded3 )] ( https://scrutinizer-ci.com/g/driebit/DriebitHttpCacheBundle/ )
6
- [ ![ Latest Stable Version ] ( https://poser.pugx.org/driebit/http-cache-bundle/v/stable.png )] ( https://packagist.org/packages/driebit/http-cache-bundle )
1
+ FOSHttpCacheBundle
2
+ ==================
3
+
4
+ This is a work in progress to unite the LiipCacheControlBundle and
5
+ DriebitHttpCacheBundle into one good bundle. We
6
+ [ hope to publish this as a FOS bundle ] ( https://github.com/FriendsOfSymfony/friendsofsymfony.github.com/issues/42 )
7
7
8
8
Introduction
9
9
------------
10
10
11
- This bundle offers an easy way to manage your Symfony2 application’s invalidation (purge) requests and send these
12
- requests to your HTTP cache.
11
+ This bundle offers tools to improve HTTP caching with Symfony2. It provides
12
+ global configuration options to set caching headers based on the path,
13
+ controller and other aspects of the request. It provides means to actively
14
+ invalidate caching proxies and some additional tools that can help when working
15
+ with a caching proxy.
13
16
14
17
Features
15
18
--------
16
19
20
+ Caching Headers
21
+ ...............
22
+
23
+ Cache Invalidation
24
+ ..................
17
25
* Set up an invalidation scheme without writing PHP code.
18
26
* Send invalidation requests with minimal impact on performance.
19
27
* Easily implement your own HTTP cache client.
20
28
29
+ Tools
30
+ .....
31
+
21
32
Documentation
22
33
-------------
23
34
Original file line number Diff line number Diff line change
1
+ TODO: this should be a TOC and the rest split up and merged with liipREADME.md
2
+
1
3
Installation
2
4
------------
3
5
4
- This library is available on [ Packagist] ( https://packagist.org/packages/driebit /http-cache-bundle ) . You can install it
6
+ This library is available on [ Packagist] ( https://packagist.org/packages/friendsofsymfony /http-cache-bundle ) . You can install it
5
7
using Composer:
6
8
``` bash
7
- $ composer require driebit /http-cache-bundle:@stable
9
+ $ composer require friendsofsymfony /http-cache-bundle:@stable
8
10
```
9
11
10
12
Then add the bundle to your application:
@@ -16,7 +18,7 @@ public function registerBundles()
16
18
{
17
19
$bundles = array(
18
20
...
19
- new Driebit \HttpCacheBundle\DriebitHttpCacheBundle (),
21
+ new FOS \HttpCacheBundle\FOSHttpCacheBundle (),
20
22
...
21
23
);
22
24
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments