-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.96 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.96 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
65
66
67
68
{
"name": "jooservices/wordpress-sdk",
"description": "A strictly-typed, SOLID-compliant PHP SDK for WordPress REST API",
"type": "library",
"version": "1.0.1",
"require": {
"php": ">=8.5",
"jooservices/client": "^0.5.0",
"jooservices/dto": "^1.0",
"symfony/validator": "^8.0",
"symfony/serializer": "^8.0",
"symfony/property-info": "^8.0",
"symfony/property-access": "^8.0",
"monolog/monolog": "^3.10",
"php-di/php-di": "^7.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"JooServices\\WordPress\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JooServices\\WordPress\\Sdk\\Tests\\": "tests/"
}
},
"scripts": {
"lint": [
"@lint:pint",
"@lint:phpstan",
"@lint:phpcs",
"@lint:phpmd"
],
"lint:pint": "pint --test",
"lint:phpstan": "phpstan analyse",
"lint:phpcs": "phpcs",
"lint:phpmd": "php -d error_reporting=24575 vendor/bin/phpmd src/ text phpmd.xml",
"lint:fix": "pint",
"test": "phpunit",
"test:unit": "phpunit --testsuite=Unit",
"test:integration": "phpunit --testsuite=Integration",
"test:coverage": "phpunit --coverage-html=coverage",
"security": "composer audit",
"quality": [
"@lint",
"@test",
"@security"
]
},
"minimum-stability": "stable",
"require-dev": {
"laravel/pint": "^1.27",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5",
"squizlabs/php_codesniffer": "^4.0",
"phpmd/phpmd": "^2.15",
"captainhook/captainhook": "^5.27",
"infection/infection": "^0.32.3",
"vlucas/phpdotenv": "^5.6",
"fakerphp/faker": "^1.24"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}