-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 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
{
"name": "davidschwarz/line-number",
"description": "Line numbers as immutable value objects. With a WeakMap based repository in the background.",
"type": "value-object",
"keywords": ["value object", "Line number"],
"homepage": "https://github.com/d4s6/LineNumber",
"license": "MIT",
"autoload": {
"psr-4": {
"DavidSchwarz\\LineNumber\\": "src/"
}
},
"authors": [
{
"name": "David Schwarz",
"email": "[email protected]"
}
],
"require": {
"php": "8.2.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"vimeo/psalm": "^5.2",
"phpunit/phpunit": "^9",
"psalm/plugin-phpunit": "^0.18.4"
},
"scripts": {
"analyze": [
"@analyze:psalm"
],
"fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix"
],
"test": [
"@test:phpunit"
],
"analyze:psalm": "psalm --config=.psalm.dist.xml --no-cache",
"test:phpunit": "phpunit tests --testdox"
}
}