-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.59 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.59 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": "writepoetry/content-bridge",
"description": "Sends post data to n8n via webhook with JWT authentication.",
"require": {
"php-di/php-di": "^7.1",
"php": ">=8.1",
"afragen/git-updater-lite": "^2.3"
},
"require-dev": {
"wp-cli/i18n-command": "^2.6",
"wp-coding-standards/wpcs": "^3.2",
"yoast/phpunit-polyfills": "^4.0",
"brain/monkey": "^2.6",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"makepot": "wp i18n make-pot .",
"check-cs": [
"@php ./vendor/bin/phpcs -ps ."
],
"fix-cs": [
"@php ./vendor/bin/phpcbf --report=summary,source"
],
"test": [
"@php ./vendor/bin/phpunit -c phpunit-9.xml --testdox"
],
"coverage": [
"@php ./vendor/bin/phpunit --coverage-html ./coverage-report"
],
"check-all": [
"@check-cs"
],
"watch": [
"find ./src ./tests -name '*.php' | entr -c composer test"
],
"dev": [
"@check-cs",
"@test"
]
},
"autoload": {
"psr-4": {
"WritePoetry\\ContentBridge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WritePoetry\\ContentBridge\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Giacomo Secchi",
"email": "info@giacomosecchi.com"
}
],
"license": "GPL-2.0-or-later",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}