1e6380ba3SAndreas Gohr{ 2e6380ba3SAndreas Gohr "name": "splitbrain/lesserphp", 3e6380ba3SAndreas Gohr "type": "library", 4e6380ba3SAndreas Gohr "description": "lesserphp is a compiler for LESS written in PHP based on leafo's lessphp.", 5e6380ba3SAndreas Gohr "license": [ 6e6380ba3SAndreas Gohr "MIT", 7e6380ba3SAndreas Gohr "GPL-3.0" 8e6380ba3SAndreas Gohr ], 9e6380ba3SAndreas Gohr "authors": [ 10e6380ba3SAndreas Gohr { 11e6380ba3SAndreas Gohr "name": "Leaf Corcoran", 12e6380ba3SAndreas Gohr "email": "leafot@gmail.com", 13e6380ba3SAndreas Gohr "homepage": "http://leafo.net" 14e6380ba3SAndreas Gohr }, 15e6380ba3SAndreas Gohr { 16e6380ba3SAndreas Gohr "name": "Marcus Schwarz", 17e6380ba3SAndreas Gohr "email": "github@maswaba.de", 18e6380ba3SAndreas Gohr "homepage": "https://www.maswaba.de" 19e6380ba3SAndreas Gohr }, 20e6380ba3SAndreas Gohr { 21e6380ba3SAndreas Gohr "name": "Andreas Gohr", 22e6380ba3SAndreas Gohr "email": "andi@splitbrain.org", 23e6380ba3SAndreas Gohr "homepage": "https://www.splitbrain.org" 24e6380ba3SAndreas Gohr } 25e6380ba3SAndreas Gohr ], 26e6380ba3SAndreas Gohr "autoload": { 27e6380ba3SAndreas Gohr "psr-4": { 28e6380ba3SAndreas Gohr "LesserPHP\\": "src", 29e6380ba3SAndreas Gohr "LesserPHP\\tests\\": "tests" 30e6380ba3SAndreas Gohr } 31e6380ba3SAndreas Gohr }, 32e6380ba3SAndreas Gohr "require": { 33e6380ba3SAndreas Gohr "php": ">=7.4" 34e6380ba3SAndreas Gohr }, 35e6380ba3SAndreas Gohr "suggest": { 36e6380ba3SAndreas Gohr "ext-fileinfo": "For mime type guessing of embedded files" 37e6380ba3SAndreas Gohr }, 38e6380ba3SAndreas Gohr "require-dev": { 39*a646a37bSAndreas Gohr "phpunit/phpunit": "^9", 40e6380ba3SAndreas Gohr "squizlabs/php_codesniffer": "^3.8", 41*a646a37bSAndreas Gohr "rector/rector": "^1.2" 42e6380ba3SAndreas Gohr }, 43e6380ba3SAndreas Gohr "scripts": { 44c13ef3baSAndreas Gohr "test": "phpunit", 45e6380ba3SAndreas Gohr "check": "phpcs -p -s", 46e6380ba3SAndreas Gohr "fix": "phpcbf", 47e6380ba3SAndreas Gohr "rector": "rector process" 48e6380ba3SAndreas Gohr } 49e6380ba3SAndreas Gohr} 50