forked from ymirapp/wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.44 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": "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",
"phpmd/phpmd": "^2.8",
"phpro/grumphp": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"sebastian/phpcpd": "^4.1 || ^5.0 || ^6.0",
"szepeviktor/phpstan-wordpress": "^0.7.7"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
},
"autoload": {
"psr-4": {
"Ymir\\Plugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ymir\\Plugin\\Tests\\": "tests/"
}
},
"suggest": {
"ext-redis": "Required to use the Redis object cache."
}
}