-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2 KB
/
Copy pathcomposer.json
File metadata and controls
87 lines (87 loc) · 2 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
{
"name": "dokan/tryaura",
"description": "an AI-powered virtual try-on and content creation platform built for fashion and eCommerce.",
"type": "wordpress-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"Dokan\\TryAura\\": "inc/",
"Dokan\\TryAura\\ThirdParty\\Packages\\": "lib/packages/"
}
},
"autoload-dev": {
"psr-4": {
"Dokan\\TryAura\\Test\\": "tests/php/src"
}
},
"authors": [
{
"name": "Dokan Inc.",
"email": "info@dokan.co"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"appsero/client": "^v2.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*",
"wp-coding-standards/wpcs": "^3.0",
"squizlabs/php_codesniffer": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"league/container": "^4.2",
"coenjacobs/mozart": "^0.7",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^1.1",
"wp-phpunit/wp-phpunit": "^6.6",
"brain/monkey": "^2.6"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || \"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || \"vendor/bin/mozart\" compose",
"composer dump-autoload"
],
"phpcs": [
"vendor/bin/phpcs inc templates tryaura.php --standard=phpcs.xml"
],
"phpcs:report": [
"vendor/bin/phpcs inc templates tryaura.php --standard=phpcs.xml --report-file='phpcs-report.txt'"
],
"phpcbf": [
"vendor/bin/phpcbf -p"
],
"test": [
"phpunit"
],
"test-f": [
"phpunit --filter"
]
},
"extra": {
"mozart": {
"dep_namespace": "Dokan\\TryAura\\ThirdParty\\Packages\\",
"dep_directory": "/lib/packages/",
"classmap_directory": "/lib/classes/",
"classmap_prefix": "Dokan_TryAura_",
"packages": [
"league/container",
"appsero/client"
],
"delete_vendor_directories": true
}
}
}