-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·83 lines (83 loc) · 2.31 KB
/
composer.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pwweb/copper",
"type": "library",
"description": "An API extension for NumberFormatter.",
"keywords": [
"number",
"format",
"NumberFormatter"
],
"homepage": "https://github.com/pwweb/Copper",
"support": {
"issues": "https://github.com/pwweb/Copper/issues",
"source": "https://github.com/pwweb/Copper"
},
"license": "MIT",
"authors": [{
"name": "Richard Browne",
"email": "richard.browne@pw-websolutions.com",
"homepage": "https://www.pw-websolutions.com"
},
{
"name": "Frank Pillukeit",
"email": "frank.pillukeit@pw-websolutions.com",
"homepage": "https://www.pw-websolutions.com"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.2",
"ext-intl": "*",
"laravel/framework": "^11.0||^12.0"
},
"require-dev": {
"laravel/pint": "^1.20",
"pestphp/pest": "^v3.7.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^3.4",
"thecodingmachine/safe": "3.0.0-alpha1 as 2.5.0"
},
"autoload": {
"psr-4": {
"Copper\\": "src/Copper/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"refacto": "rector",
"lint": "pint",
"test:refacto": "rector --dry-run",
"test:lint": "pint --test",
"test:type:check": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test:type:coverage": "php -d memory_limit=-1 ./vendor/bin/pest --coverage --min=100",
"test:unit": "php ./vendor/bin/pest --colors=always --exclude-group=integration --compact",
"test": [
"@test:refacto",
"@test:lint",
"@test:type:check",
"@test:type:coverage",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"Copper\\Laravel\\CopperServiceProvider"
]
}
}
}