-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.05 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
{
"name": "sanmai/later",
"description": "Later: deferred wrapper object",
"license": "Apache-2.0",
"type": "library",
"authors": [
{
"name": "Alexey Kopytko",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.35.1",
"infection/infection": ">=0.27.6",
"phan/phan": ">=2",
"php-coveralls/php-coveralls": "^2.0",
"phpstan/phpstan": ">=1.4.5",
"phpunit/phpunit": ">=9.5 <10",
"vimeo/psalm": ">=2"
},
"autoload": {
"psr-4": {
"Later\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Later\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": true
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
}
}
}