-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.37 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
{
"name": "myparcelnl/pdk",
"version": "2.51.0",
"description": "MyParcel Plugin Development Kit",
"type": "library",
"homepage": "https://myparcel.nl",
"license": "MIT",
"require": {
"ext-zip": "*",
"justinrainbow/json-schema": "^5.2",
"myparcelnl/sdk": ">= 7",
"php": ">=7.1.0",
"php-di/php-di": ">= 6",
"psr/log": "^1 || ^2 || ^3",
"symfony/http-foundation": ">= 2 || >= 3 || >= 4 || >= 5"
},
"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",
"console": "php bin/console",
"post-autoload-dump": "composer console generate:ide-helper",
"quality": "rector process --dry-run",
"quality:fix": "rector process",
"test": "composer run test:unit && composer run test:integration",
"test:integration": "behat",
"test:unit": "pest",
"test:unit:coverage": "php -dpcov.enabled=1 vendor/bin/pest --coverage-clover clover.xml",
"test:unit:snapshot": "pest -d --update-snapshots"
},
"require-dev": {
"behat/behat": "^3.13",
"brick/varexporter": "^0.4",
"guzzlehttp/guzzle": "^7.5",
"myparcelnl/devtools": ">= 1",
"nette/robot-loader": ">= 3",
"pestphp/pest": ">= 1",
"phpdocumentor/reflection-docblock": "^5",
"phpstan/phpstan": "^1",
"rector/rector": ">= 1",
"spatie/pest-plugin-snapshots": ">= 1",
"symfony/console": "*"
},
"autoload": {
"psr-4": {
"MyParcelNL\\Pdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyParcelNL\\Pdk\\": [
"tests/Unit/",
"tests/factories"
],
"MyParcelNL\\Pdk\\Console\\": "private/",
"MyParcelNL\\Pdk\\Tests\\": "tests/"
},
"files": [
"tests/functions.php",
"tests/usesShared.php"
]
},
"authors": [
{
"name": "Edie Lemoine",
"email": "edie@myparcel.nl"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}