|
2 | 2 | "name": "sabberworm/php-css-parser", |
3 | 3 | "type": "library", |
4 | 4 | "description": "Parser for CSS Files written in PHP", |
5 | | - "keywords": ["parser", "css", "stylesheet"], |
| 5 | + "keywords": [ |
| 6 | + "parser", |
| 7 | + "css", |
| 8 | + "stylesheet" |
| 9 | + ], |
6 | 10 | "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", |
7 | 11 | "license": "MIT", |
8 | 12 | "authors": [ |
9 | | - {"name": "Raphael Schweikert"} |
| 13 | + { |
| 14 | + "name": "Raphael Schweikert" |
| 15 | + } |
10 | 16 | ], |
11 | 17 | "require": { |
12 | 18 | "php": ">=5.6.20" |
|
16 | 22 | "codacy/coverage": "^1.4" |
17 | 23 | }, |
18 | 24 | "autoload": { |
19 | | - "psr-4": { "Sabberworm\\CSS\\": "src/" } |
| 25 | + "psr-4": { |
| 26 | + "Sabberworm\\CSS\\": "src/" |
| 27 | + } |
20 | 28 | }, |
21 | 29 | "autoload-dev": { |
22 | | - "psr-4": { "Sabberworm\\CSS\\Tests\\": "tests/" } |
| 30 | + "psr-4": { |
| 31 | + "Sabberworm\\CSS\\Tests\\": "tests/" |
| 32 | + } |
23 | 33 | }, |
24 | 34 | "scripts": { |
25 | 35 | "ci": [ |
|
36 | 46 | ], |
37 | 47 | "fix:php:sniff": "@php ./.phive/phpcbf.phar bin src tests", |
38 | 48 | "phpstan:baseline": "@php ./.phive/phpstan.phar --generate-baseline" |
| 49 | + }, |
| 50 | + "scripts-descriptions": { |
| 51 | + "ci": "Runs all dynamic and static code checks (i.e. currently, only the static checks).", |
| 52 | + "ci:php:sniff": "Checks the code style with PHP_CodeSniffer.", |
| 53 | + "ci:php:stan": "Checks the types with PHPStan.", |
| 54 | + "ci:static": "Runs all static code analysis checks for the code.", |
| 55 | + "fix:php": "Autofixes all autofixable issues in the PHP code.", |
| 56 | + "fix:php:sniff": "Fixes autofixable issues found by PHP_CodeSniffer.", |
| 57 | + "phpstand:baseline": "Updates the PHPStan baseline file to match the code." |
39 | 58 | } |
40 | 59 | } |
0 commit comments