-
Notifications
You must be signed in to change notification settings - Fork 133
/
composer.json
65 lines (65 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mtolhuys/laravel-schematics",
"description": "A interface to help you build your models",
"keywords": [
"mtolhuys",
"laravel-schematics",
"eloquent",
"diagram",
"models",
"schema",
"schematics",
"laravel"
],
"homepage": "https://github.com/mtolhuys/laravel-schematics",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Maarten Tolhuijs",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.0|^8.0"
},
"require-dev": {
"doctrine/dbal": "^2.0",
"orchestra/testbench": "^4.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Mtolhuys\\LaravelSchematics\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "vendor/orchestra/testbench-core/laravel/app",
"Src\\": "vendor/orchestra/testbench-core/laravel/src",
"Mtolhuys\\LaravelSchematics\\Tests\\": "tests"
}
},
"scripts": {
"prepare-test": "php -r \"exec('cp -r ./tests/resources/* ./vendor/orchestra/testbench-core/laravel');\"",
"test-coverage": [
"@prepare-test",
"vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover"
],
"test": [
"@prepare-test",
"vendor/bin/phpunit"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Mtolhuys\\LaravelSchematics\\LaravelSchematicsServiceProvider"
]
}
}
}