-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (63 loc) · 1.65 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
58
59
60
61
62
63
{
"name": "ymirapp/wordpress-plugin",
"description": "Ymir WordPress plugin",
"keywords": [
"ymir",
"wordpress"
],
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Carl Alexander",
"email": "[email protected]",
"homepage": "https://ymirapp.com"
}
],
"require": {
"php": ">=7.2.5",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*"
},
"require-dev": {
"dg/bypass-finals": "^1.2",
"dms/phpunit-arraysubset-asserts": "~0.1",
"fakerphp/faker": "^1.12",
"friendsofphp/php-cs-fixer": "^3.0",
"php-mock/php-mock-phpunit": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"php-stubs/wp-cli-stubs": "^2.8",
"phpmailer/phpmailer": "^5.2",
"phpmd/phpmd": "^2.8",
"phpro/grumphp": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"sebastian/phpcpd": "^4.1 || ^5.0 || ^6.0",
"symfony/polyfill-php80": "^1.28",
"szepeviktor/phpstan-wordpress": "^1.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
},
"extra": {
"installer-name": "ymir-wordpress-plugin"
},
"autoload": {
"psr-4": {
"Ymir\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ymir\\Plugin\\Tests\\": "tests/"
}
},
"suggest": {
"ext-redis": "Required to use the Redis object cache."
}
}