-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "alexanderpas/http-enum",
"type": "library",
"license": "BSL-1.0",
"authors": [
{
"name": "Alexander Pas",
"email": "git@dropdev.org"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"infection/infection": "^0.25.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^10",
"sebastian/diff": "5.0.x-dev as 4.x-dev",
"symfony/dependency-injection": "^5.3",
"symplify/easy-coding-standard": "^9.4",
"vimeo/psalm": "^4.10"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Alexanderpas\\Common\\HTTP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alexanderpas\\Common\\HTTP\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"@composer normalize"
],
"test": [
"parallel-lint --exclude vendor src tests ecs.php",
"ecs",
"phpunit",
"psalm --no-cache"
]
}
}