-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
86 lines (86 loc) · 2.46 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
83
84
85
86
{
"name": "dingo-d/woo-solo-api",
"type": "wordpress-plugin",
"description": "Plugin that provides integration of the SOLO service with WooCommerce store.",
"keywords": ["plugin", "WordPress", "WooCommerce", "solo", "API", "store", "ecommerce"],
"homepage": "https://github.com/dingo-d/woo-solo-api",
"license": "MIT",
"authors": [
{
"name": "Denis Žoljom",
"homepage": "https://madebydenis.com",
"email": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/dingo-d/woo-solo-api/graphs/contributors"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/dingo-d/wp-pest"
}
],
"require": {
"php": "^7.4 | ^8.0 | ^8.1 | ^8.2",
"ext-json": "*",
"kucrut/vite-for-wp": "^0.5.2",
"php-di/php-di": "^6.4.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"dingo-d/wp-pest": "dev-require-composer-installers-v2",
"php-stubs/woocommerce-stubs": "^v7.3.0",
"php-stubs/wordpress-globals": "^v0.2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.3.5",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.6.2",
"symfony/console": "^v5.4.2",
"szepeviktor/phpstan-wordpress": "^v1.1.6"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"MadeByDenis\\Commands\\": "bin/Commands"
}
},
"autoload": {
"psr-4": {
"MadeByDenis\\WooSoloApi\\": "src/"
}
},
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 2000,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test:types": "@php ./vendor/bin/phpstan analyze",
"test:style": "@php ./vendor/bin/phpcs",
"test:lint": "@php ./vendor/bin/parallel-lint src/ tests/",
"test:unit": "@php ./vendor/bin/pest --group=unit",
"test:integration": "@php ./vendor/bin/pest --group=integration",
"test:coverage": "@php -dxdebug.mode=coverage ./vendor/bin/pest --group=integration --coverage",
"check-all": [
"@test:types",
"@test:style",
"@test:lint",
"@test:integration",
"@test:unit"
]
},
"support": {
"issues": "https://github.com/dingo-d/woo-solo-api/issues",
"wiki": "https://github.com/dingo-d/woo-solo-api/wiki",
"source": "https://github.com/dingo-d/woo-solo-api"
}
}