-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 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
{
"name": "bugo/fa-php-helper",
"description": "Helper classes to get FontAwesome icons html code",
"type": "library",
"keywords": [
"fontawesome",
"php"
],
"homepage": "https://github.com/dragomano/fa-php-helper",
"license": "MIT",
"authors": [
{
"name": "Bugo",
"email": "bugo@dragomano.ru"
}
],
"autoload": {
"psr-4": {
"Bugo\\FontAwesome\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"nette/utils": "^4.0"
},
"require-dev": {
"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
}
}
}