-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 998 Bytes
/
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": "ayctor/wp-core",
"description": "Core functionalities for ayctor wp template",
"license": "MIT",
"authors": [
{
"name": "Ayctor",
"email": "devs@ayctor.com"
}
],
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php" : "^8.1",
"cron/cron": "^1.8.0",
"filp/whoops": "^2.15.0",
"illuminate/config": "^10.11.0",
"illuminate/view": "^10.11.0",
"mikehaertl/phpwkhtmltopdf": "^2.5.0",
"mmucklo/inflect": "^0.3.0",
"phpoffice/phpspreadsheet": "^1.28.0",
"symfony/var-dumper": "^6.2.0",
"tgmpa/tgm-plugin-activation": "^2.6.0",
"vlucas/phpdotenv": "^5.5.0"
},
"autoload": {
"psr-0": {
"WpCore": "src/"
},
"files": ["src/WpCore/helpers.php"]
}
}