-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
82 lines (82 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "salvatori/alma",
"version": "6.1.0",
"type": "wordpress-theme",
"homepage": "https://movidagrafica.co/",
"description": "Wordpress theme based on Alma using Vite",
"license": "MIT",
"authors": [{
"name": "Adrián Salvatori",
"email": "adriansalvatori@gmail.com",
"homepage": "/~https://github.com/adriansalvatori"
},
{
"name": "Richar Arenas",
"email": "emyerbetharenas@gmail.com",
"homepage": "/~https://github.com/ErAo"
},
{
"name": "Santiago Salazar",
"email": "santiagosalazar.dev@gmail.com",
"homepage": "/~https://github.com/SantiagoCode"
},
{
"name": "Alejandro Gutierrez",
"email": "alejandrocorro27@gmail.com",
"homepage": "/~https://github.com/Alejandrocorro"
}
],
"support": {
"issues": "/~https://github.com/ravorona/sage/issues"
},
"keywords": [
"wordpress"
],
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require": {
"php": "^8.2",
"generoi/sage-woocommerce": "^1.1.2",
"illuminate/encryption": "^10.46",
"illuminate/queue": "^10.46",
"illuminate/support": "^10.33",
"illuminate/testing": "^10.46",
"livewire/livewire": "^3.4",
"log1x/acf-composer": "^3.0.20",
"log1x/pagi": "^1.0",
"log1x/poet": "^2.0",
"log1x/sage-directives": "^1.1",
"log1x/sage-html-forms": "^1.0",
"log1x/sage-svg": "^1.1",
"log1x/wp-smtp": "^1.0",
"roots/acorn": "^4.0.0",
"stoutlogic/acf-builder": "^1.12"
},
"require-dev": {
"spatie/laravel-ignition": "^2.4",
"laravel/pint": "^1.13",
"squizlabs/php_codesniffer": "3.7.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"phpcs --extensions=php --standard=PSR12 app"
]
},
"extra": {
"acorn": {
"providers": [
"App\\Providers\\ThemeServiceProvider"
]
}
}
}