This repository was archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.34 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"name": "hihaho/laravel-ghost-database",
"license": "MIT",
"description": "Easily import your existing database in a ghost database, which could be useful for UnitTesting or backups etc.",
"version": "v0.1.3",
"authors": [
{
"name": "Robert Boes",
"email": "robert@hihaho.com",
"homepage": "https://www.hihaho.com/"
}
],
"homepage": "https://github.com/HiHaHo-Interactive-Video/laravel-ghost-database",
"keywords": ["Laravel", "GhostDatabase"],
"require": {
"php": "^7.1",
"illuminate/support": "^5.5|^6.0",
"illuminate/database": "^5.5|^6.0",
"nesbot/carbon": "^1.26.3 || ^2.0",
"spatie/laravel-db-snapshots": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0|^8.0",
"orchestra/testbench": "^3.0|^4.0"
},
"autoload": {
"psr-4": {
"HiHaHo\\GhostDatabase\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HiHaHo\\GhostDatabase\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"HiHaHo\\GhostDatabase\\GhostDatabaseServiceProvider"
],
"aliases": {
"GhostDatabase": "HiHaHo\\GhostDatabase\\Facades\\GhostDatabase"
}
}
}
}