forked from memio/spec-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.02 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.02 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
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
72
73
{
"name": "memio/spec-gen",
"license": "MIT",
"type": "library",
"description": "phpspec extension for better code generation",
"keywords": ["phpspec", "extension", "generator", "PHP", "code"],
"homepage": "http://memio.github.io/spec-gen",
"authors": [
{
"name": "Loïc Faugeron",
"email": "faugeron.loic@gmail.com",
"homepage": "http://gnugat.github.io",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Memio\\SpecGen\\": "src/Memio/SpecGen"
}
},
"autoload-dev": {
"psr-4": {
"fixtures\\": "fixtures",
"tests\\Memio\\SpecGen\\": "tests/Memio/SpecGen"
}
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:torchello/redaktilo.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/memio.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/linter.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/validator.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/model.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/pretty-printer.git"
},
{
"type": "vcs",
"url": "git@github.com:torchello/twig-template-engine.git"
}
],
"require": {
"gnugat/redaktilo": "dev-master",
"memio/memio": "dev-master",
"memio/linter": "dev-master",
"memio/validator": "dev-master",
"memio/model": "dev-master",
"memio/pretty-printer": "dev-master",
"memio/twig-template-engine": "dev-master",
"php": "^7.3 || ^8.0",
"phpspec/phpspec": "^7.0",
"symfony/event-dispatcher": "^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.4"
}
}