-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "calebdw/laravel-sql-entities",
"description": "Manage SQL entities in Laravel with ease.",
"keywords": [
"php",
"laravel",
"database",
"sql",
"views",
"materialized views",
"functions",
"triggers",
"procedures",
"entities"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Caleb White",
"email": "cdwhite3@pm.me"
}
],
"homepage": "https://github.com/calebdw/laravel-sql-entities",
"autoload": {
"psr-4": {
"CalebDW\\SqlEntities\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CalebDW\\SqlEntities\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Entities\\": "workbench/database/entities/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/"
}
},
"require": {
"php": "^8.4",
"illuminate/console": "^11.0 || ^12.0 || ^13.0",
"illuminate/contracts": "^11.0 || ^12.0 || ^13.0",
"illuminate/database": "^11.0 || ^12.0 || ^13.0",
"illuminate/support": "^11.0 || ^12.0 || ^13.0"
},
"require-dev": {
"calebdw/larastan": "^3.0",
"laravel/pint": "^1.16.2",
"orchestra/testbench": "^9.0 || ^10.0 || ^11.0",
"pestphp/pest": "^3.0 || ^4.0"
},
"extra": {
"laravel": {
"providers": [
"CalebDW\\SqlEntities\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test:lint": "pint --test",
"test:lint-fix": "pint",
"test:static": "phpstan analyze --ansi -v",
"test:unit": "pest",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"pest --coverage"
],
"test": [
"@test:lint",
"@test:static",
"@test:coverage"
],
"lint": [
"@php vendor/bin/pint --ansi --parallel",
"@php vendor/bin/phpstan analyse --verbose --ansi"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}