forked from Sylius/Resource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (45 loc) · 1.19 KB
/
composer.json
File metadata and controls
46 lines (45 loc) · 1.19 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
{
"name": "sylius/resource",
"type": "library",
"description": "Basic resource interfaces for PHP applications.",
"keywords": ["shop", "ecommerce", "resource", "api", "sylius", "doctrine"],
"homepage": "http://sylius.org",
"license": "MIT",
"authors": [
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/Sylius/Sylius/contributors"
}
],
"require": {
"php": ">=5.3.3",
"doctrine/collections": "~1.0",
"doctrine/common": "~2.3",
"winzou/state-machine": "~0.1"
},
"require-dev": {
"phpspec/phpspec": "~2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sylius\\Component\\Resource\\": "" }
},
"autoload-dev": {
"psr-4": { "Sylius\\Component\\Resource\\spec\\": "spec/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.10-dev"
}
}
}