forked from Sylius/Archetype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (51 loc) · 1.47 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
{
"name": "fosyl/archetype",
"type": "library",
"description": "Component for building multiple copies of an object with inherited options and attributes based on an archetype",
"keywords": ["shop", "ecommerce", "prototype", "archetype", "attribute", "variant", "feature"],
"homepage": "http://github.com/friendsofsylius",
"license": "MIT",
"authors": [
{
"name": "Adam Elsodaney",
"homepage": "http://github.com/adamelso"
},
{
"name": "Paweł Jędrzejewski",
"homepage": "http://pjedrzejewski.com"
},
{
"name": "Sylius project",
"homepage": "http://sylius.org"
},
{
"name": "Community contributions",
"homepage": "http://github.com/friendsofsylius/archetype/contributors"
}
],
"require": {
"php": "^5.6|^7.0",
"sylius/attribute": "^1.0 | ^0.19",
"sylius/product": "^1.0 | ^0.19",
"sylius/resource": "^1.0 | ^0.19"
},
"require-dev": {
"phpspec/phpspec": "^3.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sylius\\Component\\Archetype\\": "src/" }
},
"autoload-dev": {
"psr-4": { "spec\\Sylius\\Component\\Archetype\\": "spec/" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.20-dev"
}
}
}