-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
42 lines (42 loc) · 887 Bytes
/
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
{
"name": "mikemiles86/bazaarvoice-productfeed",
"type": "library",
"description": "A PHP library for generating Bazaarvoice XML ProductFeeds.",
"keywords": [
"bazaarvoice"
],
"homepage": "https://github.com/mikemiles86/bazaarvoice-productfeed",
"license": "MIT",
"authors": [{
"name": "Michael Miles",
"email": "[email protected]"
}],
"require": {
"php": ">=5.5",
"phpseclib/phpseclib": "~2.0",
"ext-simplexml": "*"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^4.0 || ^5.0",
"mikey179/vfsstream": "~1"
},
"autoload": {
"psr-4" : {
"BazaarvoiceProductFeed\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"BazaarvoiceProductFeed\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}