forked from myparcelnl/prestashop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.35 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
{
"name": "myparcelnl/prestashop-module",
"version": "4.0.0-beta.3",
"license": "MIT",
"type": "prestashop-module",
"require": {
"myparcelnl/pdk": "^2.0.0",
"php": ">=7.4.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"pestphp/pest": "^1.22",
"spatie/pest-plugin-snapshots": "^1.1.0"
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "php -dpcov.enabled=1 vendor/bin/pest --coverage-clover=clover.xml --coverage-html=coverage"
},
"source": {
"reference": "beta",
"type": "git",
"url": "https://github.com/myparcelnl/prestashop"
},
"config": {
"prepend-autoloader": false,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"MyParcelNL\\PrestaShop\\": "src/"
},
"files": [
"src/functions.php"
],
"classmap": [
"myparcelnl.php",
"controllers"
]
},
"autoload-dev": {
"psr-4": {
"": "tests/factories",
"MyParcelNL\\Pdk\\": "vendor/myparcelnl/pdk/tests/factories/",
"MyParcelNL\\Pdk\\Tests\\": "vendor/myparcelnl/pdk/tests/",
"MyParcelNL\\PrestaShop\\": "tests/Unit",
"MyParcelNL\\PrestaShop\\Tests\\": "tests/"
},
"files": [
"vendor/myparcelnl/pdk/tests/functions.php",
"vendor/myparcelnl/pdk/tests/usesShared.php",
"tests/functions.php"
]
}
}