-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.07 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "jclaveau/php-immutable-trait",
"description": "A trait to implement easily (im)mutable objects",
"license": "MIT",
"type": "library",
"keywords": ["trait", "mutable", "immutable", "instance", "clone", "functionnal"],
"authors": [
{
"name": "Jean Claveau",
"role": "Dev"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4" : {
"JClaveau\\Traits\\" : "src"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jclaveau/xhprof",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/jclaveau/phpunit-testlistener-xhprof",
"no-api": true
}
],
"require-dev": {
"phpunit/phpunit": "5.*",
"jclaveau/phpunit-testlistener-xhprof": "dev-master",
"jclaveau/xhprof": "dev-master",
"jclaveau/phpunit-profile-asserts": "^1.0",
"dusank/knapsack": "^10.0"
},
"require": {
"php": ">=5.6.0"
}
}