Skip to content

Commit 350bf9d

Browse files
committed
legacy updated
1 parent 0bbc7ab commit 350bf9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"autoload": {
3535
"files": [
36-
"src/phpFastCache.php"
36+
"src/autoload.php"
3737
]
3838
}
3939
}

src/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
*
1313
*/
1414

15-
require_once __DIR__."/phpFastCache.php";
15+
require_once __DIR__."/phpFastCache/phpFastCache.php";

src/phpFastCache.php renamed to src/phpFastCache/phpFastCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
$entity = str_replace('\\', '/', $module[1]);
3333

34-
$path = __DIR__ . '/phpFastCache/' . $entity . '.' . PHP_EXT;
34+
$path = __DIR__ . '/' . $entity . '.' . PHP_EXT;
3535
if (is_readable($path)) {
3636
require_once $path;
3737
}

0 commit comments

Comments
 (0)