Skip to content

Commit 787e537

Browse files
author
nigel lundsten
committed
revert to old assetic, no time to waste on converting all modules, maybe someone else has time
1 parent f459ead commit 787e537

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
},
7272
{
7373
"type": "vcs",
74-
"url": "https://github.com/widmogrod/zf2-assetic-module.git"
74+
"url": "https://github.com/RWOverdijk/AssetManager"
7575
}
7676
],
7777
"require": {
@@ -89,7 +89,7 @@
8989
"speckcommerce/speck-multisite" : "dev-master",
9090
"evandotpro/edp-sub-layout" : "dev-master",
9191
"zf-commons/zfc-admin" : "dev-master",
92-
"widmogrod/zf2-assetic-module" : "dev-master",
92+
"rwoverdijk/assetmanager" : "dev-master",
9393
"atukai/at-php-settings" : "dev-master"
9494
}
9595
}

config/application.config.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
'SpeckOrder',
2020
'ZfcAdmin',
2121
'SpeckRandomProducts',
22-
'AsseticBundle',
22+
'AssetManager',
23+
'Assetic',
2324
),
2425
'module_listener_options' => array(
2526
'config_glob_paths' => array(

vendor/Assetic/Module.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
namespace Assetic;
3+
4+
class Module {
5+
public function getAutoloaderConfig()
6+
{
7+
return array(
8+
'Zend\Loader\StandardAutoloader' => array(
9+
'namespaces' => array(
10+
__NAMESPACE__ => __DIR__ . '/assetic/src/' . __NAMESPACE__,
11+
),
12+
),
13+
);
14+
}
15+
}

vendor/Assetic/assetic

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit e22c5e07e672bb0cf43127e97e9368b53abf4aa8

0 commit comments

Comments
 (0)