Skip to content

Commit

Permalink
Updated README.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roel van Duijnhoven committed Jun 10, 2013
1 parent e1594ec commit b18d567
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
#### 2013-06-10
* All route configurations that match the current route will now be merged. This is especially useful when used in combination with the regular expressions previously introduced For example:

``` php
<?php
return array(
'assetic_configuration' => array(
'routes' => array(
'admin/.*' => array(
'@specific_admin_js
),
'admin/(dashboard|reports|etc)/.+' => array(
'@admin_css',
'@admin_js'
)
)
)
);
```

#### 2013-05-12
* Added possibility to specify `regex` in route name. example:

Expand Down

0 comments on commit b18d567

Please sign in to comment.