-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.29 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
{
"name": "silverorange/ambiguous-class-name-detector",
"description": "Command-line tool to check for ambiguous class names with Composer's generated class map.",
"type": "library",
"keywords": [
"composer",
"classmap",
"ambiguous"
],
"homepage": "https://github.com/silverorange/ambiguous-class-name-detector",
"license": "MIT",
"authors": [
{
"name": "Michael Gauthier",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"silverorange/coding-standard": "^1.1.0",
"phpunit/phpunit": "^10.5.19"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"test": "./vendor/bin/phpunit --testdox",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"bin": [
"bin/check-for-ambiguous-class-names"
],
"autoload": {
"psr-4": {
"Silverorange\\AmbiguousClassNameDetector\\": [
"src/",
"tests/"
]
}
}
}