-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.89 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.89 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
{
"name": "wordproof/wordproof-timestamp",
"description": "Timestamp your content onto the blockchain",
"type": "wordpress-plugin",
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7.0",
"spatie/ray": "^1.34",
"wp-cli/wp-cli": "^2.6.0",
"wpengine/wpengine-coding-standards": "dev-master"
},
"require": {
"php": "^7.3 || ^8.0",
"composer/installers": "~1.0",
"vlucas/phpdotenv": "^5.2",
"typisttech/imposter-plugin": "^0.6.2",
"symfony/polyfill-ctype": "^1.25",
"symfony/polyfill-mbstring": "^1.25",
"symfony/polyfill-php80": "^1.25",
"wordproof/wordpress-sdk": "^1.3",
"woocommerce/action-scheduler": "^3.6"
},
"license": "GPLv3",
"authors": [
{
"name": "Marijn Bent",
"email": "marijn@wordproof.com"
}
],
"config": {
"platform-check": false,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"typisttech/imposter-plugin": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"wordpress-cs": "./vendor/bin/phpcs --standard=WP-Engine app",
"cs": "php-cs-fixer fix app --allow-risky=yes"
},
"autoload": {
"psr-4": {
"WordProofTimestamp\\App\\": "app/"
}
},
"minimum-stability": "stable",
"repositories": [
{
"type": "git",
"url": "https://github.com/wpengine/wpengine-coding-standards.git"
}
],
"extra": {
"imposter": {
"namespace": "WordProofTimestamp\\App\\Vendor",
"excludes": ["woocommerce/action-scheduler", "wordproof/wordpress-sdk"]
},
"installer-paths": {
"vendor/{$vendor}/{$name}/": ["woocommerce/action-scheduler"]
}
}
}