-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathcomposer.json
51 lines (51 loc) · 1.42 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
{
"name": "puli/repository",
"description": "A filesystem-like repository for storing arbitrary resources.",
"homepage": "http://puli.io",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schussek",
"email": "[email protected]"
}
],
"require": {
"php": "^5.3.9|^7.0",
"webmozart/path-util": "^2.2",
"webmozart/glob": "^4.1",
"webmozart/assert": "^1.0",
"psr/log": "^1.0"
},
"require-dev": {
"puli/discovery": "^1.0-beta10@dev",
"webmozart/json": "^1.2.1",
"webmozart/key-value-store": "^1.0-beta7",
"symfony/filesystem": "^2.0|^3.0",
"phpunit/phpunit": "^4.6",
"sebastian/version": "^1.0.1"
},
"suggest": {
"puli/discovery": "to provide and discover resources across modules",
"webmozart/json": "to use the JSON repositories",
"webmozart/key-value-store": "to use the key-value store change stream",
"symfony/filesystem": "to use the filesystem repository"
},
"autoload": {
"psr-4": {
"Puli\\Repository\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Puli\\Repository\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"support": {
"issues": "https://github.com/puli/issues/issues"
}
}