forked from UMNLibraries/file-set-datesequence-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (30 loc) · 661 Bytes
/
composer.json
File metadata and controls
35 lines (30 loc) · 661 Bytes
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
{
"name": "umnlib/file-set-datesequence",
"description": "A PHP package for sets of files whose names are a sequence of dates.",
"keywords": [],
"authors": [
{
"name": "David Naughton",
"email": "naughton@umn.edu"
}
],
"require": {
"umnlib/set": "1.0.*",
"symfony/finder": "^2.5.2"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:UMNLibraries/set-php.git"
}
],
"require-dev": {
"phpunit/phpunit": ">=3.7"
},
"autoload": {
"psr-4": {"UmnLib\\Core\\File\\Set\\": "src/"}
},
"autoload-dev": {
"psr-4": {"UmnLib\\Core\\Tests\\File\\Set\\": "tests/"}
}
}