-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 2.28 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 2.28 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "staticweb-io/static-deploy",
"description": "WordPress plugin for deploying static websites.",
"homepage": "https://github.com/staticweb-io/static-deploy",
"license": "UNLICENSE",
"authors": [
{
"name": "Leon Stafford",
"email": "me@ljs.dev",
"homepage": "https://ljs.dev"
},
{
"name": "John Shaffer",
"email": "jdsha@pm.me",
"homepage": "https://john.shaffe.rs"
}
],
"type": "wordpress-plugin",
"support": {
"issues": "https://github.com/staticweb-io/static-deploy/issues",
"forum": "https://github.com/staticweb-io/static-deploy/issues",
"docs": "https://deepwiki.com/staticweb-io/static-deploy",
"source": "https://github.com/staticweb-io/static-deploy"
},
"require": {
"php": ">=8.2",
"ext-mbstring": "*",
"ext-simplexml": "*",
"lib-libxml": "*",
"yahnis-elsts/plugin-update-checker": "^5",
"masterminds/html5": "^2",
"phlak/splat": "^6",
"aws/aws-sdk-php": "^3",
"guzzlehttp/guzzle": "^7"
},
"require-dev": {
"szepeviktor/phpstan-wordpress": "*",
"squizlabs/php_codesniffer": "*",
"phpunit/phpunit": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"wp-coding-standards/wpcs": "*",
"phpcompatibility/php-compatibility": "*",
"php-parallel-lint/php-parallel-lint": "*",
"mikey179/vfsstream": "*",
"php-stubs/wp-cli-stubs": "^2.12",
"rector/rector": "^2.1"
},
"autoload": {
"psr-4": {
"StaticDeploy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"StaticDeploy\\": "tests/integration/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"classmap-authoritative": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.2.0"
}
},
"extra": {
"aws/aws-sdk-php": [
"CloudFront",
"S3"
]
},
"scripts": {
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices"
}
}