-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "evo-mark/inertia-wordpress",
"type": "wordpress-plugin",
"description": "Inertia adapter for Wordpress applications",
"keywords": [
"wordpress",
"plugin"
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"homepage": "https://github.com/evo-mark/inertia-wordpress",
"authors": [
{
"name": "Craig Riley",
"homepage": "https://evomark.co.uk"
}
],
"support": {
"source": "https://github.com/evo-mark/inertia-wordpress",
"issues": "https://github.com/evo-mark/inertia-wordpress/issues"
},
"require": {
"php": ">=8.2",
"evo-mark/evo-wp-rest-registration": "^4.1",
"evo-mark/wp-vite": "^1.2",
"guzzlehttp/guzzle": "^7.9",
"illuminate/collections": "^11.35",
"nesbot/carbon": "^3.8",
"php-di/php-di": "^7.0",
"symfony/console": "^7.2",
"symfony/process": "^7.2",
"yahnis-elsts/plugin-update-checker": "^5.5"
},
"require-dev": {
"symfony/var-dumper": "^7.2",
"php-stubs/wordpress-stubs": "^6.3",
"php-stubs/wp-cli-stubs": "^2.8",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {
"EvoMark\\InertiaWordpress\\": "src/"
},
"files": [
"lib/functions.php"
]
},
"scripts": {
"cs-check": [
"./vendor/bin/php-cs-fixer check --config ./.php-cs-fixer.php -vvv"
],
"cs-fix": [
"./vendor/bin/php-cs-fixer fix --config ./.php-cs-fixer.php -vvv"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}