-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer-dev81.json
More file actions
144 lines (144 loc) · 4.35 KB
/
composer-dev81.json
File metadata and controls
144 lines (144 loc) · 4.35 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "yivic/yivic-base",
"type": "wordpress-muplugin",
"require": {
"laravel/framework": "~8.83.0",
"spatie/laravel-html": "~2.30.0",
"laravel/tinker": "~2.9.0",
"doctrine/dbal": "~3.3.8",
"symfony/var-dumper": "~5.4.39",
"mcaskill/composer-exclude-files": "~4.0.0",
"php": "^7.3|^8.0"
},
"require-dev": {
"johnpbloch/wordpress-core": "^6.1.0",
"wp-plugin/woocommerce": "*",
"wpackagist-plugin/query-monitor": "^3.15",
"wpackagist-plugin/woocommerce-product-price-based-on-countries": "^3.0.0",
"wpackagist-theme/storefront": "^4.0",
"wpackagist-theme/twentytwentyfour": "^1.0.0",
"automattic/vipwpcs": "~3.0.0",
"phpcompatibility/php-compatibility": "~9.3.5",
"dealerdirect/phpcodesniffer-composer-installer": "~1.0.0",
"phpstan/phpstan": "~2.0.1",
"phpunit/phpunit": "~9.6",
"mockery/mockery": "~1.6",
"phpspec/prophecy": "~1.19.0",
"php-stubs/wordpress-stubs": "~6.6.2",
"brain/monkey": "~2.6.0",
"10up/wp_mock": "~1.0.0",
"codeception/codeception": "~5.0.0",
"codeception/module-asserts": "~3.0",
"codeception/module-phpbrowser": "~3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "package",
"package": {
"name": "wp-plugin/woocommerce",
"version": "8.5.2",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://downloads.wordpress.org/plugin/woocommerce.8.5.2.zip"
}
}
},
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"autoload": {
"files": [
"src/Foundation/Support/helpers-utils.php",
"./yivic-base-bootstrap.php",
"./yivic-base-init.php"
],
"psr-4": {
"Yivic_Base\\Deps\\": "src-deps",
"Yivic_Base\\": "src"
}
},
"autoload-dev": {
"files": [
],
"psr-4": {
"Yivic_Base\\Tests\\": "tests"
}
},
"config": {
"platform": {
"php": "8.1.0"
},
"platform-check": false,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"mcaskill/composer-exclude-files": true
},
"vendor-dir": "./vendor",
"sort-packages": true
},
"extra": {
"exclude-from-files": [
"laravel/framework/src/Illuminate/Foundation/helpers.php"
],
"installer-paths": {
"dev-docker/wordpress/wp-content/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"dev-docker/wordpress/wp-content/themes/{$name}/": [
"type:wordpress-theme"
],
"dev-docker/wordpress/wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
]
},
"mozart": {
"dep_namespace": "Yivic_Base\\Deps\\",
"dep_directory": "/src-deps/",
"classmap_directory": "/classes/deps/",
"classmap_prefix": "Yivic_Base_",
"packages": [
],
"excluded_packages": [],
"override_autoload": [],
"delete_vendor_directories": false
}
},
"scripts": {
"post-install-cmd": [
"cp -r `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'wp-content$|composer.json$|wp-cli.yml$|README.md$|LICENSE.md$'` ./dev-docker/wordpress",
"rm -rf `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'license.txt|readme.html'`"
],
"post-update-cmd": [
"cp -r `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'wp-content$|composer.json$|wp-cli.yml$|README.md$|LICENSE.md$'` ./dev-docker/wordpress",
"rm -rf `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'license.txt|readme.html'`"
],
"dev-update": [
"cp -r `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'wp-content$|composer.json$|wp-cli.yml$|README.md$|LICENSE.md$'` ./dev-docker/wordpress",
"rm -rf `find ./vendor/johnpbloch/wordpress-core -maxdepth 1 -mindepth 1 | cut -c3- | grep -vE 'license.txt|readme.html'`"
],
"phpcs": [
"./vendor/bin/phpcs"
],
"phpstan": [
"./vendor/bin/phpstan"
],
"phpunit": [
"./vendor/bin/phpunit"
],
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}