-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.19 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
{
"name": "kernelfolla/exercise-php-whois-query-service",
"description": "A PHP-based WHOIS query service for .com domains, built as an exercise using Slim Framework and DDD Hexagonal Architecture. Includes a RESTful API, Docker support, and unit/integration tests.",
"version": "1.0.0",
"type": "project",
"authors": [
{
"name": "Marino Di Clemente",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.4",
"slim/slim": "^4.14.0",
"slim/psr7": "^1.7.0"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^2.0.0",
"phpspec/prophecy-phpunit": "^v2.3.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.2",
"phpunit/phpunit": "^11.5.3",
"squizlabs/php_codesniffer": "^3.11.3"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"process-timeout": 0,
"sort-packages": true
}
}