-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1022 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
{
"name": "consistence/consistence-robot-loader-class-finder",
"description": "Integration of Nette RobotLoader as Consistence ClassFinder",
"license": "MIT",
"require": {
"php": "^7.2",
"consistence/consistence": "^1.0|^2.0",
"nette/finder": "^2.4",
"nette/robot-loader": "^3.0",
"nette/utils": "^2.5"
},
"require-dev": {
"consistence/coding-standard": "3.10.1",
"php-parallel-lint/php-console-highlighter": "1.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phing/phing": "2.17.2",
"phpunit/phpunit": "8.5.25",
"shipmonk/composer-dependency-analyser": "1.8.1"
},
"provide": {
"consistence/class-finder-implementation": "1.0"
},
"autoload": {
"psr-4": { "Consistence\\ClassFinder\\RobotLoader\\": [ "src" ] },
"classmap": [ "src" ]
},
"autoload-dev": {
"psr-4": { "Consistence\\ClassFinder\\RobotLoader\\": [ "tests" ] },
"classmap": [ "tests" ]
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}