blob: fdad739d53f22b2f64bcbd36281c0ef205b9fc87 (
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
|
diff --git a/bin/jsonlint b/bin/jsonlint
index 1b9272a..c15cfa6 100755
--- a/bin/jsonlint
+++ b/bin/jsonlint
@@ -1,4 +1,4 @@
-#!/usr/bin/env php
+#!/usr/bin/php
<?php
/*
@@ -10,20 +10,10 @@
* file that was distributed with this source code.
*/
-function includeIfExists($file)
-{
- if (file_exists($file)) {
- return include $file;
- }
-}
-
-if ((!$loader = includeIfExists(__DIR__.'/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__.'/../../../autoload.php'))) {
- $msg = 'You must set up the project dependencies, run the following commands:'.PHP_EOL.
- 'curl -sS https://getcomposer.org/installer | php'.PHP_EOL.
- 'php composer.phar install'.PHP_EOL;
- fwrite(STDERR, $msg);
- exit(1);
-}
+spl_autoload_register(function ($class) {
+ $src = str_replace('\\', '/', $class).'.php';
+ @include_once $src;
+});
use Seld\JsonLint\JsonParser;
|