-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "tumblr/chorus-timekeeper",
"description": "A super simple class for DI with timekeeping",
"license": "GPL-2.0-or-later",
"type": "library",
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.17",
"infection/infection": ">=0.10.5",
"phan/phan": ">=1.1",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": "^9.4",
"symfony/phpunit-bridge": "^6.3",
"vimeo/psalm": ">=2"
},
"autoload": {
"psr-4": {
"Tumblr\\Chorus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tumblr\\Tests\\Chorus\\": "tests/"
}
},
"config": {
"allow-plugins": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
}
}
}