summaryrefslogtreecommitdiffstats
path: root/php-jsonlint-bin-without-composer-autoloader.patch
blob: 551a99d8fc3f3b3f08bebfbb6afd4b3c596a01fa (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
diff -up ./bin/jsonlint.rpm ./bin/jsonlint
--- ./bin/jsonlint.rpm	2019-10-25 08:30:29.927672672 +0200
+++ ./bin/jsonlint	2019-10-25 08:31:09.937459032 +0200
@@ -10,20 +10,7 @@
  * file that was distributed with this source code.
  */
 
-function includeIfExists($file)
-{
-    if (file_exists($file)) {
-        return include $file;
-    }
-}
-
-if (!includeIfExists(__DIR__.'/../vendor/autoload.php') && !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);
-}
+require_once '/usr/share/php/Seld/JsonLint/autoload.php';
 
 use Seld\JsonLint\JsonParser;