forked from anam-hossain/phpcart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 825 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
{
"name": "anam/phpcart",
"description": "Simple framework agnostic shopping cart",
"keywords": [
"Cart",
"php cart",
"Shopping cart",
"Laravel shopping cart",
"Laravel cart"
],
"homepage": "https://github.com/anam-hossain/phpcart",
"license": "MIT",
"authors": [
{
"name": "Anam hossain",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/http-foundation": "~2.0",
"illuminate/support": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"autoload": {
"psr-4": {
"Anam\\Phpcart\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Anam\\Phpcart\\Test\\": "tests"
}
}
}