-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 885 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 885 Bytes
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
{
"name": "linio/common",
"description": "Common library for Linio projects",
"keywords": ["linio", "common", "collections", "types", "traits"],
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"doctrine/collections": "^1.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"monolog/monolog": "^2.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Linio\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\Common\\": "tests/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --verbose --show-progress=dots",
"lint:check": "php-cs-fixer fix --dry-run --verbose --show-progress=dots",
"phpunit": "phpunit",
"phpstan": "phpstan analyze",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
]
}
}