-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 926 Bytes
/
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
{
"name": "sllh/composer-lint",
"description": "Extends the composer validate command with extra rules",
"keywords": ["composer", "plugin", "validate", "lint"],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Sullivan SENECHAL",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"symfony/phpunit-bridge": "^5.2"
},
"autoload": {
"psr-4": {
"SLLH\\ComposerLint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SLLH\\ComposerLint\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"class": "SLLH\\ComposerLint\\LintPlugin"
}
}