-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 938 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 938 Bytes
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": "gifty/plugin-woocommerce",
"description": "WordPress plugin to accept Gifty gift cards in your WooCommerce shop.",
"type": "project",
"license": "GPL-2.0-or-later",
"scripts": {
"test": "phpunit",
"phpcs": "vendor/bin/phpcs inc --standard=NeutronStandard",
"phpcbf": "vendor/bin/phpcbf inc --standard=NeutronStandard",
"cilocal": "act -W '.github/workflows/ci.yml'",
"ci": [
"@phpcs"
]
},
"require": {
"php": ">=8.0.0",
"gifty/gifty-php": "^v1.6.0",
"woocommerce/action-scheduler": "^3.7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"automattic/phpcs-neutron-standard": "^1.6",
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^2.0"
},
"autoload": {
"psr-4": {
"Gifty\\WooCommerce\\": "inc/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}