-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·52 lines (52 loc) · 1.51 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
{
"name": "scoredetect/timestamps",
"description": "Timestamp your WordPress content to empower your content authenticity and increase user trust with our blockchain timestamping solution.",
"type": "wordpress-plugin",
"keywords": ["wordpress", "plugin", "timestamp", "blockchain", "content", "authenticity", "copyright", "timestamps", "protection", "verification", "proof", "timestamping", "scoredetect"],
"license": ["AGPL-3.0-only"],
"authors": [
{
"name": "ScoreDetect",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"10up/phpcs-composer": "3.0.0",
"phpcompatibility/phpcompatibility-wp": "*",
"brianhenryie/strauss": "^0.14.0"
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"strauss": [ "vendor/bin/strauss" ],
"post-install-cmd": [
"@strauss"
],
"post-update-cmd": [
"@strauss"
]
},
"extra": {
"installer-paths": {
"vendor/{$name}/": ["type:wordpress-plugin", "type:wordpress-theme"]
},
"strauss": {
"target_directory": "vendor-prefixed",
"namespace_prefix": "SDCOM_Timestamps\\Vendor_Prefixed\\",
"classmap_prefix": "SDCOM_Timestamps_Vendor_Prefixed_",
"constant_prefix": "SDCOM_TIMESTAMPS_VENDOR_"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}