Skip to content

Commit f7c0c22

Browse files
committed
Merge pull request #1 from mbed67/specifications
Specifications
2 parents f08e123 + b598758 commit f7c0c22

23 files changed

+2265
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor/*
2+
.idea

composer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "phpdocumentor/flyfinder",
3+
"description": "Flysystem plugin to add file finding capabilities to the Filesystem entity",
4+
"keywords": ["flysystem", "phpdoc"],
5+
"homepage": "http://www.phpdoc.org",
6+
"license": "MIT",
7+
"autoload": {
8+
"psr-4": {
9+
"Flyfinder\\": ["src/"]
10+
}
11+
},
12+
"autoload-dev": {
13+
"psr-4": {
14+
"Flyfinder\\": ["tests/unit/"]
15+
}
16+
},
17+
"require": {
18+
"php": ">=5.5",
19+
"league/flysystem": "~1.0.8"
20+
},
21+
"minimum-stability": "stable",
22+
"require-dev": {
23+
"phpunit/phpunit": "^4.0",
24+
"mockery/mockery": "~0.9@dev"
25+
}
26+
}

0 commit comments

Comments
 (0)