-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.24 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
{
"name": "toto/user-kit",
"version": "1.0.0",
"description": "This PHP package serves as a demonstrative tool, specifically designed to showcase the essential skills required for a job interview. It highlights the creation of an agnostic PHP package, exception handling, unit testing, management of DTO models, and API interactions. Aimed at demonstrating proficiency in PHP development, it provides a clear example of how to implement and integrate key programming concepts effectively.",
"type": "library",
"autoload": {
"psr-4": {
"Toto\\UserKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Toto\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Giuseppe Toto",
"email": "giuseppe.toto@gmail.com"
}
],
"require": {
"php": "^8.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"pestphp/pest": "^2.34",
"guzzlehttp/guzzle": "^7.0",
"mockery/mockery": "^1.6"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}