-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
59 lines (59 loc) · 1.66 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": "laravie/serialize-queries",
"description": "Serializable Laravel Query Builder",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravie\\SerializesQuery\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Laravie\\SerializesQuery\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"require": {
"php": "^8.1",
"illuminate/database": "^10.48.23 || ^11.31 || ^12.0",
"illuminate/queue": "^10.48.23 || ^11.31 || ^12.0",
"laravel/serializable-closure": "^1.3 || ^2.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"orchestra/testbench": "^8.28 || ^9.6 || ^10.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.1 || ^11.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"ci": [
"@composer audit",
"@lint",
"@test"
],
"test": "@php vendor/bin/phpunit -c ./ --color",
"post-autoload-dump": "@prepare",
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"lint": [
"@php vendor/bin/pint",
"@php vendor/bin/phpstan analyse --verbose"
]
},
"prefer-stable": true,
"minimum-stability": "dev"
}