-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
55 lines (55 loc) · 1.56 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
{
"name": "myparcelnl/woocommerce",
"version": "5.1.0",
"require": {
"myparcelnl/pdk": "^2.0.0",
"guzzlehttp/guzzle": "^7.5.0",
"psr/log": "*"
},
"scripts": {
"analyse": "php -dmemory_limit=-1 vendor/bin/phpstan analyse",
"analyse:generate": "composer run analyse -- --generate-baseline phpstan-baseline.php --allow-empty-baseline",
"analyze": "composer run analyse",
"analyze:generate": "composer run analyse:generate",
"test": "vendor/bin/pest",
"test:coverage": "php -dpcov.enabled=1 vendor/bin/pest --coverage-clover=coverage.xml"
},
"require-dev": {
"humbug/php-scoper": "^0.17.5",
"pestphp/pest": ">= 1",
"php-stubs/woocommerce-stubs": "^8.0",
"phpstan/phpstan": "^1.10",
"spatie/pest-plugin-snapshots": ">= 1",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MyParcelNL\\WooCommerce\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"": "tests/factories",
"MyParcelNL\\Pdk\\": "vendor/myparcelnl/pdk/tests/factories",
"MyParcelNL\\Pdk\\Tests\\": "vendor/myparcelnl/pdk/tests",
"MyParcelNL\\WooCommerce\\": "tests/Unit",
"MyParcelNL\\WooCommerce\\Tests\\": "tests"
},
"files": [
"vendor/myparcelnl/pdk/tests/functions.php",
"vendor/myparcelnl/pdk/tests/usesShared.php",
"tests/functions.php"
]
},
"config": {
"prepend-autoloader": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}