-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·51 lines (51 loc) · 1.31 KB
/
composer.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.31 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
{
"name": "altapay/altapay-for-woocommerce",
"license": "MIT",
"description": "AltaPay: Payments less complicated",
"keywords": [
"payment",
"altapay"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"archive": {
"exclude": [
"phpstan.neon.dist",
"phpunit.xml.dist"
]
},
"require": {
"php": "^7.4 || ^8.0",
"altapay/api-php":"^3.0",
"eftec/bladeone":"^4.4",
"humbug/php-scoper": "0.17.5"
},
"require-dev": {
"phpstan/extension-installer": "^1.0",
"phpunit/phpunit": "^7.0 || ^8.0",
"szepeviktor/phpstan-wordpress": "^0.7.1"
},
"autoload": {
"classmap": ["classes","helpers"]
},
"autoload-dev": {
"classmap": ["tests"]
},
"scripts": {
"prefix-dependencies": [
"vendor/bin/php-scoper add-prefix",
"rm -rf vendor",
"mv build/vendor vendor",
"rm -rf build",
"composer dump-autoload --working-dir ./ --classmap-authoritative"
]
}
}