-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.47 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "stellarwp/validation",
"description": "An end-to-end ready PHP validation library",
"minimum-stability": "stable",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "StellarWP",
"email": "dev@stellarwp.com"
},
{
"name": "Jason Adams",
"email": "jason.adams@givewp.com"
}
],
"require": {
"stellarwp/container-contract": "1.0.4",
"stellarwp/field-conditions": "^1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"lucatume/di52": "^3.0",
"lucatume/wp-browser": "^3.0.14",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"phpstan/phpstan": "^1.12",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"autoload": {
"psr-4": {
"StellarWP\\Validation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StellarWP\\Validation\\Tests\\": "tests/_support/Helper"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/wordpress/wordpress-develop.git"
}
],
"scripts": {
"phpstan": "phpstan analyse --memory-limit=512M",
"phpstan:baseline": "phpstan analyse --generate-baseline=phpstan-baseline.neon --memory-limit=512M"
}
}