-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.16 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
{
"name": "piotrpress/wordpress-sandbox",
"type": "project",
"license": "MIT",
"description": "This library is WordPress Docker setup which uses SQLite database and PHP built-in web server.",
"homepage": "https://github.com/PiotrPress/wordpress-sandbox",
"authors": [
{
"name": "Piotr Niewiadomski",
"homepage": "https://piotr.press"
}
],
"keywords": [ "wordpress", "sandbox", "blog", "cms", "docker", "sqlite", "php", "php built-in web server", "web server", "server" ],
"require": {
"wordpress-core/no-content": "*",
"wordpress-theme/twentytwentythree": "*",
"wordpress-plugin/sqlite-database-integration": "^2.0",
"piotrpress/wordpress-config": "^3.0",
"piotrpress/wordpress-router": "^1.0",
"piotrpress/wordpress-installer": "^1.0"
},
"config": {
"allow-plugins": {
"piotrpress/wordpress-installer": true
}
},
"scripts": {
"post-update-cmd": [
"cp vendor/piotrpress/wordpress-config/res/wp-config.php wp-config.php",
"cp wp-content/plugins/sqlite-database-integration/db.copy wp-content/db.php",
"ln -nfs ../wp-content wp-core/wp-content",
"@php install.php"
]
}
}