-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
34 lines (31 loc) · 853 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
{
"name": "everzet/persisted-objects",
"description": "Overly simplistic persistance implementations for functional testing",
"keywords": ["Test", "DDD", "Repository", "Persistance", "BDD"],
"homepage": "https://github.com/everzet/persisted-objects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "[email protected]",
"homepage": "http://everzet.com"
}
],
"require": {
"php": ">5.3,<7.3"
},
"require-dev": {
"phpunit/phpunit": "~4.4.0"
},
"autoload": {
"psr-4": {
"Everzet\\PersistedObjects\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}