-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.77 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.77 KB
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
64
{
"name": "ymirapp/wordpress-plugin",
"description": "Ymir WordPress plugin",
"keywords": [
"ymir",
"wordpress"
],
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [
{
"name": "Carl Alexander",
"email": "support@ymirapp.com",
"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-stubs/wp-cli-stubs": "^2.8",
"phpmailer/phpmailer": "^7.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"symfony/polyfill-php80": "^1.28",
"szepeviktor/phpstan-wordpress": "^2.0",
"vlucas/phpdotenv": "^5.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": 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."
},
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --dry-run --allow-risky=yes",
"phpstan": "phpstan analyze --ansi",
"phpstan:generate-baseline": "phpstan analyze --generate-baseline",
"tests:integration": "phpunit --testsuite integration",
"tests:unit": "phpunit --testsuite unit"
}
}