Skip to content

Commit c542479

Browse files
committed
initial code
0 parents  commit c542479

27 files changed

+6824
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/
2+
.idea/
3+
Main.php

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/material_theme_project_new.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# PHP DataTransferObject
2+
3+

composer.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "nuxtifyts/php-dto",
3+
"description": "PHP DataTransferObject",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Fa-BRAIK",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"php": "~8.4"
14+
},
15+
"require-dev": {
16+
"phpstan/phpstan": "^2.0",
17+
"phpunit/phpunit": "^11.4"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Nuxtifyts\\PhpDto\\": "src/"
22+
}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {
26+
"Nuxtifyts\\PhpDto\\Tests\\": "tests/"
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)