blob: 3514fcf8cb417a26e9d05ef53136341353bd96b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
diff -up bin/vobject.psr0 bin/vobject
--- bin/vobject.psr0 2014-04-06 09:55:39.145932310 +0200
+++ bin/vobject 2014-04-06 09:59:04.416686079 +0200
@@ -1,24 +1,21 @@
-#!/usr/bin/env php
+#!/usr/bin/php
<?php
namespace Sabre\VObject;
-// This sucks.. we have to try to find the composer autoloader. But chances
-// are, we can't find it this way. So we'll do our bestest
-$paths = array(
- __DIR__ . '/../vendor/autoload.php', // In case vobject is cloned directly
- __DIR__ . '/../../../autoload.php', // In case vobject is a composer dependency.
-);
+// Simple PSR-0 autoloader
+// dont rely on include path as pear directory
+// may contains old incompatible version
-foreach($paths as $path) {
- if (file_exists($path)) {
- include $path;
- break;
+spl_autoload_register(function ($class) {
+ if (strpos($class, 'Sabre\\')===0) {
+ $file = '/usr/share/php/'.str_replace('\\', '/', $class).'.php';
+ @include $file;
}
-}
+});
if (!class_exists('Sabre\\VObject\\Version')) {
- fwrite(STDERR, "Composer autoloader could not be loaded.\n");
+ fwrite(STDERR, "Autoloader could not be properly loaded.\n");
die(1);
}
|