forked from interconnectit/Search-Replace-DB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.05 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
{
"name": "interconnectit/search-replace-db",
"description": "A PHP search replace tool for quickly modifying a string throughout a database. Useful for changing the base URL when migrating a WordPress site from development to production.",
"license": "GPL-3.0",
"homepage": "https://github.com/interconnectit/Search-Replace-DB",
"repositories": [
{
"type": "composer",
"url": "https://composer.infomaker.io"
},
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.1",
"ext-mysqli": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-json": "*",
"infomaker/everyware-starter-kit": "2.0.1"
},
"support": {
"issues": "https://github.com/interconnectit/Search-Replace-DB/issues"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"ext-simplexml": "*"
},
"scripts": {
"test": [
"phpunit"
]
},
"bin": [ "srdb.cli.php" ]
}