forked from htvennik/flysystem-adapter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 1000 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
{
"name": "php-translation/flysystem-adapter",
"description": "Adapter for flysystem.",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com"
}
],
"require": {
"php": "^7.0",
"php-translation/common": "^1.0",
"php-translation/symfony-storage": "^1.0",
"symfony/translation": "^3.3 || ^4.0",
"league/flysystem": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.5 || ^6.2",
"nyholm/symfony-bundle-test": "^1.2"
},
"autoload": {
"psr-4": {
"Translation\\PlatformAdapter\\Flysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Translation\\PlatformAdapter\\Flysystem\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}