-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
47 lines (47 loc) · 972 Bytes
/
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
{
"name": "cleaniquecoders/blueprint-macro",
"description": "Laravel Blueprint Macro",
"license": "MIT",
"authors": [
{
"name": "Nasrul Hazim",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CleaniqueCoders\\Blueprint\\Macro\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CleaniqueCoders\\Blueprint\\Macro\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1 | ^8.2 | ^8.3",
"illuminate/filesystem": "^10.0 | ^11.0",
"illuminate/support": "^10.0 | ^11.0",
"illuminate/auth": "^10.0 | ^11.0",
"doctrine/dbal": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"phpunit/phpunit": "^10.0 | ^11.0",
"orchestra/testbench": "8.* | 9.*",
"mockery/mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.0"
},
"extra": {
"laravel": {
"providers": [
"CleaniqueCoders\\Blueprint\\Macro\\BlueprintMacroServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}