diff -up ./bin/phpcompatinfo.json.dist.rpm ./bin/phpcompatinfo.json.dist --- ./bin/phpcompatinfo.json.dist.rpm 2020-07-06 10:54:23.000000000 +0200 +++ ./bin/phpcompatinfo.json.dist 2020-07-06 15:17:00.620618627 +0200 @@ -6,6 +6,19 @@ } ], "plugins": [ + { + "name": "Cache", + "class": "Bartlett\\Reflect\\Plugin\\CachePlugin", + "options": { + "adapter": "DoctrineCacheAdapter", + "backend": { + "class": "Doctrine\\Common\\Cache\\FilesystemCache", + "args": [ + "%{HOME}/.cache/php-reflect" + ] + } + } + } ], "analysers" : [ ], diff -up ./bin/phpcompatinfo.rpm ./bin/phpcompatinfo --- ./bin/phpcompatinfo.rpm 2020-07-06 15:17:00.620618627 +0200 +++ ./bin/phpcompatinfo 2020-07-06 15:20:53.977038529 +0200 @@ -1,23 +1,13 @@ #!/usr/bin/env php setUseIncludePath(true); if (PHP_SAPI !== 'cli') { return; @@ -28,5 +18,5 @@ use Bartlett\CompatInfo\Console\Applicat Environment::setScanDir(); -$application = new Application($appName, '5.2.3'); +$application = new Application($appName, '@package_version@'); $application->run();