This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.73 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "love-oss/github-event-parser",
"description": "PHP library to get a readable representation of events dispatched by Github API v3",
"type": "library",
"license": "MIT",
"keywords": ["github", "event", "json parser"],
"homepage": "https://github.com/loveOSS/github-event-parser",
"authors": [
{
"name": "Mickaël Andrieu",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "LoveOSS\\Github\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"require": {
"php": "^7.4|^8.0"
},
"require-dev": {
"edgedesign/phpqa": "^v1.25",
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.3",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12"
},
"minimum-stability": "stable",
"scripts": {
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix",
"phpqa": "@php ./vendor/bin/phpqa --report --tools phpcs:0,phpmetrics,phploc,pdepend,security-checker:0,parallel-lint:0 --ignoredDirs vendor,tests",
"phpstan": "@php ./vendor/bin/phpstan analyse src --level 5 -c extension.neon",
"psalm": "@php ./vendor/bin/psalm --threads=8 --diff",
"test": "@php ./vendor/bin/phpunit"
},
"scripts-descriptions": {
"cs-fix": "Check and fix coding styles using PHP CS Fixer",
"phpqa": "Execute PHQA toolsuite analysis",
"phpstan": "Execute PHPStan analysis",
"psalm": "Execute Psalm analysis",
"test": "Launch PHPUnit test suite"
},
"config": {
"sort-packages": true
}
}