-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.63 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "wedevs/wp-utils",
"description": "Various WordPress classes and traits for WordPress",
"homepage": "https://wedevs.com/",
"keywords": [
"wordpress",
"utils",
"traits",
"classes"
],
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"WeDevs\\WpUtils\\": "src/"
},
"files": [
"src/Models/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"WeDevs\\WpUtils\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Tareq Hasan",
"email": "tareq@wedevs.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpunit/phpunit": "^9.6",
"brain/monkey": "^2.6",
"mockery/mockery": "^1.6",
"php-stubs/wordpress-stubs": "^6.9",
"squizlabs/php_codesniffer": "^3.13",
"wp-coding-standards/wpcs": "^3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2",
"phpstan/phpstan": "^2.1",
"szepeviktor/phpstan-wordpress": "^2.0"
},
"scripts": {
"test": "php -d error_reporting=24575 vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/php-cs-fixer fix --allow-unsupported-php-version=true",
"lint": "vendor/bin/phpcs"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}