-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
27 lines (27 loc) · 845 Bytes
/
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
{
"name": "dmhendricks/rewrite-content-urls",
"type": "wordpress-plugin",
"description": "Allows you to rewrite URLs in content, useful for syncing production data into a development/staging environment.",
"keywords": ["rewrite", "url", "link"],
"homepage": "https://www.danhendricks.com/",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/dmhendricks/wordpress-rewrite-content-urls-plugin/issues",
"source": "https://github.com/dmhendricks/wordpress-rewrite-content-urls-plugin/"
},
"require": {
"php": ">=7.0",
"wa72/htmlpagedom": "^1.3.1",
"composer/installers": "^1.5"
},
"autoload": {
"psr-4": {
"CloudVerve\\RewriteContetUrls\\": "app/"
}
},
"scripts": {
"pre-autoload-dump": [
"find ./vendor -name '.git*' -exec rm -rf {} +"
]
}
}