-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.19 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
{
"name": "meema/flysystem-meema",
"description": "Flysystem adapter for the Meema API",
"keywords": [
"meema",
"cion",
"flysystem",
"flysystem-meema"
],
"homepage": "https://github.com/meemaio/flysystem-meema",
"license": "MIT",
"authors": [
{
"name": "Chris Breuer",
"email": "[email protected]",
"homepage": "https://cion.agency",
"role": "Developer"
}
],
"require": {
"php": "^7.0 || ^8.0",
"guzzlehttp/guzzle": "^7.3",
"league/flysystem": "^1.0.70",
"vlucas/phpdotenv": "^5.3",
"meema/meema-client-php": "dev-main"
},
"require-dev": {
"orchestra/testbench": "^6.17",
"pestphp/pest": "^1.0",
"symfony/var-dumper": "^5.2"
},
"autoload": {
"psr-4": {
"Meema\\Flysystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Meema\\Flysystem\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}