-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.49 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
{
"name" : "wthealth/laravel-enum-transformer",
"description" : "",
"keywords" : [
"webtools",
"enum",
"typescript",
"laravel-typescript-transformer",
"typescript-transformer"
],
"homepage" : "https://github.com/wt-health/laravel-enum-transformer",
"license" : "MIT",
"authors" : [
{
"name" : "Byron Adams",
"email" : "[email protected]",
"homepage" : "https://webtools.health",
"role" : "Developer"
}
],
"require" : {
"php" : "^8.0",
"ext-json": "*",
"spatie/typescript-transformer" : "^2.1.3",
"bensampo/laravel-enum": "^5.0 || ^6.0"
},
"require-dev" : {
"phpunit/phpunit": "^9.5.10",
"spatie/phpunit-snapshot-assertions": "^4.2.9",
"symplify/easy-coding-standard": "^9.4",
"scrutinizer/ocular": "^1.8.1"
},
"autoload" : {
"psr-4" : {
"Webtools\\LaravelEnumTransformer\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Webtools\\LaravelEnumTransformer\\Tests\\" : "tests"
}
},
"scripts" : {
"test" : "vendor/bin/phpunit",
"ecs-check" : "vendor/bin/ecs check",
"ecs-fix" : "vendor/bin/ecs check --fix",
"coverage" : "vendor/bin/phpunit --coverage-clover=./coverage.clover -v"
},
"config" : {
"sort-packages" : true
},
"minimum-stability" : "dev",
"prefer-stable" : true
}