-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 947 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
35
36
37
{
"name": "neam/dna-project-base-stateless-file-management",
"description": "Schema addition and helper traits that encapsulates the 12-factor-inspired [DNA Project Base](http://neamlabs.com/dna-project-base/) stateless file-handling logic",
"keywords": [
"php",
"file-handling",
"12factor",
"s3",
"paas",
"docker"
],
"homepage": "https://github.com/neam/dna-project-base-stateless-file-management",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fredrik Wollsén",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"neam\\stateless_file_management\\": "src/"
}
},
"require": {
"php": ">=5.6.5",
"ext-iconv": "*",
"propel/propel": "*@dev",
"filestack/filestack-php": ">=1.1.11",
"league/flysystem": "~1.0.24",
"league/flysystem-aws-s3-v3": "~1.0.13"
},
"require-dev": {
"codeception/codeception": "~2.2.4"
}
}