-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.13 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
{
"name": "bugo/forko",
"description": "Class to work with Database via SMF forks",
"type": "library",
"keywords": ["forko", "database", "smf", "elkarte", "storybb", "wedge", "portamx"],
"homepage": "https://github.com/dragomano/Forko",
"license": "MIT",
"authors": [
{
"name": "Bugo",
"email": "bugo@dragomano.ru"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"php": "^8.1",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.36",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Bugo\\Forko\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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
}
}
}