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;