-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 879 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
{
"name": "okashoi/laravel5-conoha-object-handler",
"description": "An object handler for the Conoha Object Storage on Laravel 5.",
"license": "MIT",
"keywords": [
"laravel",
"laravel5",
"ConoHa"
],
"authors": [
{
"name": "Okada Shohei",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"illuminate/support": "^5.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "dev-master",
"orchestra/testbench": "^3.0"
},
"autoload": {
"psr-4": {
"Okashoi\\Laravel5ConohaObjectHandler\\": "src/Okashoi/Laravel5ConohaObjectHandler"
}
},
"scripts": {
"test": "./vendor/phpunit/phpunit/phpunit --verbose"
}
}