-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.63 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
{
"name": "italystrap/settings",
"description": "Settings API for WordPress",
"keywords": ["wordpress","settings","framework"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "overclokk",
"email": "[email protected]",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.2",
"italystrap/cleaner": "^1.1",
"italystrap/config": "^2.2",
"italystrap/fields": "^2.0"
},
"require-dev": {
"lucatume/wp-browser": "2.2",
"lucatume/function-mocker-le": "^1.0",
"italystrap/debug": "~2.0",
"wp-coding-standards/wpcs": "^2.1",
"phpcompatibility/php-compatibility": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpstan/phpstan": "^0.12",
"szepeviktor/phpstan-wordpress": "^0.5",
"rdlowrey/auryn": "^1.4",
"ocramius/proxy-manager": "^2.2"
},
"autoload": {
"psr-4": {
"ItalyStrap\\I18N\\": "src/I18N/",
"ItalyStrap\\DataParser\\": "src/DataParser/",
"ItalyStrap\\FileHeader\\": "src/FileHeader/",
"ItalyStrap\\Settings\\": "src/Settings/"
}
},
"scripts": {
"check": [
"phpcs -p -s --standard=phpcs.xml src",
"phpstan analyse"
],
"test": [
"test"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/settings/issues",
"source": "https://github.com/ItalyStrap/settings"
}
}