-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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
{
"name": "ardenthq/arkvault-url",
"description": "Deeplink URL generator for ARK based networks",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alfonso",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"pestphp/pest": "^2.5",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"Ardenthq\\UrlBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"refactor": "vendor/bin/rector process",
"format": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/pest",
"test:fast": "./vendor/bin/pest --parallel",
"test:coverage": "./vendor/bin/pest --coverage --min=100 --coverage-html=.coverage --coverage-clover=coverage.xml"
}
}