-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.07 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.07 KB
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
{
"name": "chaoswey/taiwan-id-validator",
"description": "台灣身分證、統一編號驗證",
"keywords": [
"台灣身分證",
"台灣統一編號",
"taiwan id validator"
],
"homepage": "https://github.com/chaoswey/taiwan-id-validator",
"license": "MIT",
"authors": [
{
"name": "chaoswey",
"email": "armed1049@gmail.com"
}
],
"require": {
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"Chaoswey\\TaiwanIdValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chaoswey\\TaiwanIdValidator\\Tests\\": "tests"
}
},
"require-dev": {
"pestphp/pest": "^2.0"
},
"scripts": {
"test": "vendor/bin/pest"
},
"extra": {
"laravel": {
"providers": [
"Chaoswey\\TaiwanIdValidator\\TaiwanIdValidatorServiceProvider"
],
"aliases": {
"TaiwanIdValidator": "Chaoswey\\TaiwanIdValidator\\Facades\\TaiwanIdValidator"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}