-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
136 lines (136 loc) · 4.13 KB
/
composer.json
File metadata and controls
136 lines (136 loc) · 4.13 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "inpsyde/paypal-point-of-sale",
"type": "wordpress-plugin",
"description": "",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Inpsyde GmbH",
"homepage": "https://inpsyde.com/",
"email": "hello@inpsyde.com",
"role": "Company"
},
{
"name": "Moritz Meißelbach",
"email": "m.meisselbach@inpsyde.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "path",
"url": "./packages.local/*",
"canonical": true
},
{
"type": "path",
"url": "./modules.local/*",
"canonical": true
},
{
"type": "composer",
"url": "https://repo.packagist.com/inpsyde/"
},
{
"packagist.org": false
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"container-interop/service-provider": "^0.4.0",
"dhii/containers": "^0.1",
"dhii/module-interface": "^0.2 || ^0.3",
"dhii/validator": "^0.1",
"inpsyde/assets": "^2.1",
"inpsyde/inpsyde-debug": "*",
"inpsyde/inpsyde-http-client": "*",
"inpsyde/inpsyde-queue": "*",
"inpsyde/inpsyde-state-machine": "*",
"inpsyde/inpsyde-woocommerce-lifecycle-events": "*",
"inpsyde/metabox-orchestra": "^0.4.3",
"inpsyde/wc-product-contracts": "*",
"inpsyde/wc-status-report": "*",
"inpsyde/paypal-pos-assets": "*",
"inpsyde/paypal-pos-auth": "*",
"inpsyde/paypal-pos-logging": "*",
"inpsyde/paypal-pos-notices": "*",
"inpsyde/paypal-pos-onboarding": "*",
"inpsyde/paypal-pos-php-sdk": "*",
"inpsyde/paypal-pos-product-debug": "*",
"inpsyde/paypal-pos-product-settings": "*",
"inpsyde/paypal-pos-queue": "*",
"inpsyde/paypal-pos-settings": "*",
"inpsyde/paypal-pos-sync": "*",
"inpsyde/paypal-pos-webhooks": "*",
"oomphinc/composer-installers-extender": "^2.0",
"psr/container": "^1.0",
"sniccowp/php-scoper-wordpress-excludes": "^6.8"
},
"require-dev": {
"brain/monkey": "^2.0",
"fakerphp/faker": "^1.9@dev",
"inpsyde/php-coding-standards": "1.0.0-RC.1",
"mockery/mockery": "^1.3",
"php-stubs/woocommerce-stubs": "^4.3",
"php-stubs/wordpress-stubs": "^5.4",
"phpunit/phpunit": "^8.0 || ^9.0",
"symfony/var-dumper": "^5.0",
"vimeo/psalm": "^5",
"vlucas/phpdotenv": "^4.1",
"webmozart/path-util": "^2.3@stable"
},
"autoload": {
"psr-4": {
"Syde\\PayPal\\PointOfSale\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Syde\\PayPal\\PointOfSale\\Test\\": "tests/PHPUnit/Helper"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs": "@php ./vendor/bin/phpcs -n -s --parallel=24",
"cs:phpcbf": "@php ./vendor/bin/phpcbf --parallel=24;exit 0",
"cs:interactive": "@php ./vendor/bin/phpcs -a",
"cs:dev": [
"@cs:phpcbf",
"@cs:interactive"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"composer/installers": true,
"inpsyde/module-ide-helper": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": false
}
},
"extra": {
"installer-disable": true,
"installer-types": [
"inpsyde-module"
],
"installer-paths": {
"modules/{$name}/": [
"type:inpsyde-module"
]
},
"hooks": {
"pre-commit": [
"vendor/bin/phpcbf -q --parallel=24; exit 0"
]
},
"inpsyde-modules": {
"dump-modules": "modules.php"
}
}
}