forked from thecodingmachine/class-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.59 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
51
52
53
{
"name": "thecodingmachine/class-explorer",
"type": "library",
"description": "Find the list of all your classes and more.",
"keywords": ["classes", "reflection"],
"homepage": "https://github.com/thecodingmachine/class-explorer",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "d.negrier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": ">=8.1",
"psr/simple-cache": "^1 || ^3",
"mouf/classname-mapper": "^1",
"ext-hash": "*"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1||^2.7",
"phpunit/phpunit": "^7.2.7 || ^10.5 || ^11.0",
"squizlabs/php_codesniffer": "^3.2.3 || ^3.9",
"phpstan/phpstan": "^0.12 || ^1.10",
"maglnet/composer-require-checker": "^1.0 || ^4.10",
"thecodingmachine/phpstan-strict-rules": "^0.12 || ^1.0",
"symfony/cache": "^4.1.4 || ^7.0"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\ClassExplorer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\ClassExplorer\\": "tests/"
}
},
"extra": {
"class": "TheCodingMachine\\ClassExplorer\\ClassExplorerPlugin",
"branch-alias": {
"dev-master": "1.1.x-dev"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse src -c phpstan.neon --level=8 --no-progress -vvv"
},
"minimum-stability": "alpha",
"prefer-stable": true
}