-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.39 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
50
51
52
{
"name": "moo/flashcard",
"type": "laravel-package",
"description": "Laravel package that provides a simple flash card system with REST API.",
"keywords": ["flash card", "knowledgebase", "laravel", "console", "cli"],
"homepage": "https://github.com/satrun77/flashcard",
"support": {
"issues": "https://github.com/satrun77/flashcard/issues",
"source": "https://github.com/satrun77/flashcard"
},
"license": "MIT",
"authors": [
{
"name": "Mohamed Alsharaf",
"email": "[email protected]",
"homepage": "http://my.geek.nz"
}
],
"require": {
"php": ">=7.1",
"illuminate/console": "^5.6",
"illuminate/database": "^5.6",
"illuminate/http": "^5.6",
"mockery/mockery": "^1.1",
"spatie/laravel-query-builder": "^1.9",
"spatie/laravel-sluggable": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"orchestra/testbench": "~3.5.0|~3.6.0"
},
"autoload": {
"psr-4": {
"Moo\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Moo\\FlashCard\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Moo\\FlashCard\\ServiceProvider"
]
}
}
}