-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "thuraaung2493/lara-mm-nrc",
"description": "Laravel Myanmar NRC Tool.",
"type": "library",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "thuraaung2493",
"email": "[email protected]",
"homepage": "http://thuraaung2493.github.io/"
}
],
"autoload": {
"psr-4": {
"Thuraaung\\LaraMmNrc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Thuraaung\\LaraMmNrc\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"nunomaduro/mock-final-classes": "^1.2",
"thuraaung2493/laravel-config-types": "^0.1.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.6"
},
"extra": {
"laravel": {
"providers": [
"Thuraaung\\LaraMmNrc\\LaraMmNrcServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2.4"
},
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"lint": "pint",
"type-check": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test": "pest --colors=always --compact",
"test:unit": "pest --colors=always --filter 'Unit'",
"test:parallel": "pest --colors=always --parallel --processes=3",
"test:coverage": "XDEBUG_MODE=coverag pest --coverage --min=90",
"test:lint": "pint --test",
"prepare": [
"@lint",
"@type-check",
"@test:parallel",
"@test:coverage"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}