generated from archtechx/template
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
49 lines (49 loc) · 1.18 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
{
"name": "based/laravel-fluent",
"description": "Define model attributes the fluent way. Automatically cast properties to native types.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Boris Lepikhin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Based\\Fluent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Based\\Fluent\\Tests\\": "tests/",
"Based\\Fluent\\Tests\\Models\\": "tests/Pest/Models"
}
},
"require": {
"php": "^8.0",
"illuminate/support": "^9.0"
},
"require-dev": {
"orchestra/testbench": "^7.5",
"nunomaduro/larastan": "^2.1.10",
"pestphp/pest": "^1.2",
"pestphp/pest-plugin-laravel": "^1.2"
},
"extra": {
"laravel": {
"providers": [
"Based\\Fluent\\FluentServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/pest",
"stan": "./vendor/bin/phpstan analyse"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}