-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
54 lines (54 loc) · 1.39 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
{
"name": "brain/context",
"description": "No-dependencies package to provide context to templates based on query.",
"keywords": [
"wordpress"
],
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com"
}
],
"support": {
"issues": "https://github.com/Brain-WP/Context/issues",
"source": "https://github.com/Brain-WP/Context/"
},
"require": {
"php": ">=7.1",
"psr/log": "^1 || ^2 || ^3"
},
"require-dev": {
"brain/monkey": "^2.6.1",
"mockery/mockery": "^1.3.0 || ^1.5.0",
"phpunit/phpunit": "^7.5.20 || ^9.5.13",
"inpsyde/php-coding-standards": "^1@dev",
"vimeo/psalm": "^4.20.0",
"php-stubs/wordpress-stubs": ">=5.9@stable"
},
"autoload": {
"psr-4": {
"Brain\\Context\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brain\\Context\\Tests\\": "tests/src/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-version/1": "1.x-dev",
"dev-version/2": "2.x-dev"
}
}
}