forked from silverorange/store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.79 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
{
"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]"
}
],
"require": {
"php": ">=5.5.0",
"ext-imagick": "*",
"pear/crypt_gpg": "^1.4.0",
"pear/text_password": "^1.1.1",
"pear/validate_finance_creditcard": ">=0.5.2",
"pear/numbers_words": ">=0.18.0",
"silverorange/admin": "^2.5.0",
"silverorange/net_notifier": "^0.4.1",
"silverorange/site": "^4.11.0",
"silverorange/swat": "^2.7.0",
"silverorange/xml_rpc_ajax": "^1.0.12",
"silverorange/yui": "^1.0.11"
},
"require-dev": {
"silverorange/turing": ">=0.1.4"
},
"suggest": {
"authorizenet/authorizenet": "Payments with Authorize.net.",
"braintree/braintree_php": "Payments with Braintree",
"pear/payment_paypal_soap": "Payments with PayPal.",
"pear/services_akismet2": "Filter spam from product reviews.",
"silverorange/atom_feed": "Froogle product feeds for Google.",
"silverorange/blorg": "Product reviews.",
"silverorange/deliverance": "Email mailing list support.",
"silverorange/nate_go_search": "Product search indexing."
},
"autoload": {
"classmap": [ "Store/" ]
},
"include-path": [
"./"
]
}