-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.2 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
{
"name": "bugo/smf-compat",
"description": "Wrappers to work with global variables and deprecated functions in SMF",
"type": "library",
"keywords": [
"smf",
"utilities",
"compatibility"
],
"homepage": "https://github.com/dragomano/smf-compat",
"license": "MIT",
"authors": [
{
"name": "Bugo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bugo\\Compat\\": "src/Compat/"
},
"files": [
"src/app.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-intl": "*"
},
"require-dev": {
"php": "^8.1",
"pestphp/pest": "^2.36",
"rector/rector": "^2.0"
},
"scripts": {
"check": "vendor/bin/rector process --dry-run --clear-cache",
"tests": "vendor/bin/pest --colors=always",
"tests-coverage": "vendor/bin/pest --colors=always --coverage --min=90",
"tests-coverage-clover": "vendor/bin/pest --colors=always --min=90 --coverage-clover coverage.xml",
"tests-coverage-html": "vendor/bin/pest --colors=always --min=90 --coverage-html coverage"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}