├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── bin └── lighthouse.js ├── composer.json ├── package.json ├── phpstan.neon └── src ├── Enums ├── Category.php ├── Concerns │ └── EnumMethods.php └── FormFactor.php ├── Exceptions ├── AuditDoesNotExist.php ├── CouldNotRunLighthouse.php ├── InvalidEnumValue.php ├── InvalidUrl.php └── LighthouseReportedError.php ├── Lighthouse.php ├── LighthouseResult.php └── Support └── Arr.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/README.md -------------------------------------------------------------------------------- /bin/lighthouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/bin/lighthouse.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Enums/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Enums/Category.php -------------------------------------------------------------------------------- /src/Enums/Concerns/EnumMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Enums/Concerns/EnumMethods.php -------------------------------------------------------------------------------- /src/Enums/FormFactor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Enums/FormFactor.php -------------------------------------------------------------------------------- /src/Exceptions/AuditDoesNotExist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Exceptions/AuditDoesNotExist.php -------------------------------------------------------------------------------- /src/Exceptions/CouldNotRunLighthouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Exceptions/CouldNotRunLighthouse.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidEnumValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Exceptions/InvalidEnumValue.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Exceptions/InvalidUrl.php -------------------------------------------------------------------------------- /src/Exceptions/LighthouseReportedError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Exceptions/LighthouseReportedError.php -------------------------------------------------------------------------------- /src/Lighthouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Lighthouse.php -------------------------------------------------------------------------------- /src/LighthouseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/LighthouseResult.php -------------------------------------------------------------------------------- /src/Support/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/lighthouse-php/HEAD/src/Support/Arr.php --------------------------------------------------------------------------------