-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 904 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
{
"name": "phpslides/status",
"description": "PhpSlides HTTP Status Response in handling PhpSlides API",
"homepage": "https://github.com/phpslides/status",
"type": "library",
"license": "MIT",
"keywords": ["phpslides-status", "status", "api", "phpslides", "slides"],
"authors": [{
"name": "Dave Conco",
"email": "[email protected]",
"homepage": "https://dconco.github.io"
}],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^11.2"
},
"autoload": {
"psr-4": {
"PhpSlides\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpSlides\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}