-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 783 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 783 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
39
{
"name": "tito10047/php-defer",
"license": "Apache-2.0",
"description": "A defer function defers the execution of a function until the surrounding function returns.",
"minimum-stability": "stable",
"keywords": [
"php",
"defer"
],
"require": {
"php": ">=8.1"
},
"authors": [
{
"name": "Jozef Môstka",
"email": "jozef@mostka.sk",
"homepage": "https://github.com/tito10047/php-defer"
}
],
"autoload": {
"psr-4": {
"Defer\\": "src/"
},
"files": [
"shortcuts.php"
]
},
"autoload-dev": {
"psr-4": {
"Defer\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit --no-configuration ./tests"
}
}