-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.28 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
{
"name": "yivic/yivic-base",
"description": "The Base plugin for Theme and Plugin development. It requires ACF pro to work.",
"type": "wordpress-muplugin",
"authors": [
{
"name": "Phuc Nguyen",
"email": "[email protected]"
},
{
"name": "Yivic",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "~7.2.2",
"laravel/socialite": "~4.3.2",
"laravelcollective/html": "~6.1.0",
"symfony/var-dumper": "~5.0.8",
"php": ">=7.2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "~3.5.1",
"mockery/mockery": "~1.3.1",
"symfony/var-dumper": "~5.0.5",
"ezyang/htmlpurifier": "~4.6",
"codeception/codeception": "^4.0"
},
"autoload": {
"psr-4": {
"Yivic\\Wp\\YivicBase\\": "src",
"Yivic\\Wp\\YivicBase\\App\\": "src/app",
"Yivic\\Wp\\YivicBase\\Libs\\": "src/libs",
"Yivic\\Wp\\YivicBase\\Libs\\Traits\\": "src/libs/traits",
"Yivic\\Wp\\YivicBase\\Helpers\\": "src/helpers",
"Yivic\\Wp\\YivicBase\\Helpers\\Interfaces\\": "src/helpers/interfaces",
"Yivic\\Wp\\YivicBase\\Helpers\\Traits\\": "src/helpers/traits",
"Yivic\\Wp\\YivicBase\\Services\\": "src/services",
"Yivic\\Wp\\YivicBase\\Base\\": "src/base",
"Yivic\\Wp\\YivicBase\\Helper\\": "src/helper",
"Yivic\\Wp\\YivicBase\\Component\\": "src/component"
}
}
}