-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 880 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
{
"name": "driade/sleepery",
"description": "sleep and usleep wrappers to make them easier to test",
"type": "library",
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*"
},
"homepage": "https://github.com/driade/sleepery",
"license": "MIT",
"php": "^7.0|^8.0",
"autoload": {
"psr-4": {
"Driade\\Sleepery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Driade\\Sleepery\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "David Fernández",
"email": "david@mundosaparte.com"
}
],
"scripts": {
"test": [
"@php vendor/bin/phpstan analyse -l max src tests",
"@php vendor/bin/phpunit tests"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}