-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.55 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
{
"name": "laramore/migrations",
"description": "Describe your table fields in the model and let Laravel manage your migration for you",
"keywords": ["ORM", "Laravel", "Model", "Migration", "Automatic", "Auto", "Fields", "Field", "Uuid", "Meta", "Table", "Database", "Validations"],
"license": "MIT",
"config": {
"platform": {
"php": "7.3"
}
},
"require": {
"php": "^7.3|^8.0",
"laramore/laramore": ">=0.24.0",
"doctrine/dbal": "^2.5"
},
"authors": [
{
"name": "Nastuzzi Samy",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laramore\\": "src/"
}
},
"require-dev": {
"phpmd/phpmd": ">=2.7",
"squizlabs/php_codesniffer": ">=3.5",
"phpstan/phpstan": ">=0.9.2",
"phpunit/phpunit": ">=6.5"
},
"scripts": {
"test:lint": [
"./vendor/bin/phpcs src",
"./vendor/bin/phpmd src text phpmd.xml"
],
"fix:lint": [
"./vendor/bin/phpcbf src"
],
"test:unit": [
"./vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
],
"test": [
"@composer test:lint",
"@composer test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"Laramore\\Providers\\MigrationProvider"
],
"aliases": {
"Migration": "Laramore\\Facades\\Migration"
}
}
}
}