-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
81 lines (81 loc) · 2.01 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
76
77
78
79
80
81
{
"name": "silverorange/store",
"description": "Framework for e-commerce sites.",
"type": "library",
"keywords": [ "e-commerce", "product", "catalog" ],
"homepage": "https://github.com/silverorange/store",
"license": "LGPL-2.1",
"authors": [
{
"name": "Charles Waddell",
"email": "[email protected]"
},
{
"name": "Isaac Grant",
"email": "[email protected]"
},
{
"name": "Michael Gauthier",
"email": "[email protected]"
},
{
"name": "Nathan Frederikson",
"email": "[email protected]"
},
{
"name": "Nick Burka",
"email": "[email protected]"
},
{
"name": "Stephen DesRoches",
"email": "[email protected]"
},
{
"name": "Steven Garrity",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://composer.silverorange.com",
"only": ["silverorange/*"]
}
],
"require": {
"php": ">=8.2",
"ext-imagick": "*",
"pear/text_password": "^1.1.1",
"pear/validate_finance_creditcard": ">=0.5.2",
"silverorange/admin": "^6.2.0 || ^7.0.0",
"silverorange/site": "^14.5.0 || ^15.0.0",
"silverorange/swat": "^7.3.0",
"silverorange/xml_rpc_ajax": "^3.1.0",
"silverorange/yui": "^1.0.11"
},
"require-dev": {
"phpstan/phpstan": "^1.12",
"silverorange/coding-standard": "^1.0.0"
},
"suggest": {
"authorizenet/authorizenet": "Payments with Authorize.net.",
"braintree/braintree_php": "Payments with Braintree",
"pear/payment_paypal_soap": "Payments with PayPal.",
"silverorange/deliverance": "Email mailing list support."
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"phpstan": "./vendor/bin/phpstan analyze",
"post-install-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src",
"post-update-cmd": "./vendor/bin/phpcs --config-set installed_paths vendor/silverorange/coding-standard/src"
},
"autoload": {
"classmap": [ "Store/" ]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}