-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
35 lines (35 loc) · 1.09 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
{
"name": "kkarpieszuk/prior-price",
"description": "Track Woocommerce Products prices history and display the lowest price in the last 30 days. This plugin allows your WC shop to be compliant with European Commision Directive 98/6/EC Article 6a which specyfies price reduction annoucment policy.",
"type": "project",
"license": "BSD",
"authors": [
{
"name": "Konrad Karpieszuk",
"email": "kkarpieszuk@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"PriorPrice\\": "app/PriorPrice",
"PhpStanCustomRules\\": "phpstan-custom-rules"
}
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/extension-installer": "^1.2",
"php-stubs/woocommerce-stubs": "^7.2",
"10up/wp_mock": "*",
"phpunit/phpunit": "^9.6"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require": {
"freemius/wordpress-sdk": "^2.7"
}
}