-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
47 lines (47 loc) · 1.23 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
44
45
46
47
{
"name": "phpexperts/simple-dto",
"description": "A quick and easy DTO package.",
"keywords": [
"dto",
"data transfer objects",
"restful",
"api"
],
"homepage": "https://www.phpexperts.pro/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/tedrsmith"
}
],
"repositories": [
{ "type": "composer", "url": "https://bettergist.phpexperts.pro/" }
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"nesbot/carbon": "2.*|3.*",
"phpexperts/datatype-validator": "^1.7|^2.1"
},
"require-dev": {
"phpunit/phpunit": "8.*|9.*|^10.5.32|11.*|12.*",
"phpstan/phpstan": "*",
"symfony/var-dumper": "*",
"povils/phpmnd": "^3.6",
"squizlabs/php_codesniffer": "*",
"phpexperts/dockerize": "^12.1"
},
"autoload": {
"psr-4": {
"PHPExperts\\SimpleDTO\\" : "src/"
}
},
"autoload-dev": {
"psr-4": { "PHPExperts\\SimpleDTO\\Tests\\" : "tests/" }
}
}