-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
57 lines (57 loc) · 1.52 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
54
55
56
57
{
"name": "brain/hierarchy",
"description": "No-dependencies package that embodies WordPress template hierarchy",
"keywords": [
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/Brain-WP/Hierarchy/issues",
"source": "https://github.com/Brain-WP/Hierarchy/Hierarchy"
},
"require": {
"php": ">=7.1.3"
},
"require-dev": {
"brain/monkey": "^2.6.1",
"mockery/mockery": "^1.3.0 || ^1.5.0",
"symfony/finder": "^v4.4.37",
"phpunit/phpunit": "^7.5.20 || ^9.5.16",
"inpsyde/php-coding-standards": "^1@dev",
"vimeo/psalm": "^4.21.0",
"php-stubs/wordpress-stubs": ">=5.9@stable"
},
"suggest": {
"symfony/finder": "Allows loading of templates using Symfony finder component."
},
"autoload": {
"psr-4": {
"Brain\\Hierarchy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Hierarchy\\Tests\\": "tests/src/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev",
"dev-version/2": "2.x-dev",
"dev-version/3": "3.x-dev"
}
}
}