-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "andrewmead/wpsites",
"description": "Local WordPress site management",
"keywords": ["herd", "wordpress"],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2"
},
"require-dev": {
"cuyz/valinor": "^1.12",
"laravel-zero/framework": "^11.0.0",
"laravel/pint": "^1.15.2",
"laravel/prompts": "^0.1.24",
"mockery/mockery": "^1.6.11",
"pestphp/pest": "^2.34.7",
"wp-cli/wp-config-transformer": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["builds/wpsites"],
"scripts": {
"post-install-cmd": [
"echo 'Welcome to WPSites! \uD83E\uDD73'",
"echo 'Run `wpsites config` to get started!'"
],
"build": "php wpsites app:build --build-version=\"wpsites\" wpsites",
"format": "./vendor/bin/pint"
}
}