-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.57 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.57 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
{
"name": "php-standard-library/repository-template",
"type": "library",
"description": "PHP Standard Library: Repository Template",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-bcmath": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sodium": "*",
"azjezz/psl": "^1.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"php-standard-library/psalm-plugin": "^1.0",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.6"
},
"config": {
"process-timeout": 1200,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Psl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Psl\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs:check",
"@type:check",
"@security:analysis",
"@test:unit"
],
"code:coverage": "php-coveralls -v",
"cs:check": [
"phpcs",
"php-cs-fixer fix --dry-run"
],
"cs:fix": [
"phpcbf",
"php-cs-fixer fix"
],
"security:analysis": "psalm --taint-analysis",
"test:unit": "phpunit",
"type:check": "psalm",
"type:coverage": "psalm --shepherd"
}
}