Initial Commit
This commit is contained in:
commit
88b5850c32
12 changed files with 11441 additions and 0 deletions
38
composer.json
Normal file
38
composer.json
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"name": "icefox/dto",
|
||||
"type": "library",
|
||||
"require": {
|
||||
"laravel/framework": "^11.0",
|
||||
"psr/log": "^3.0",
|
||||
"phpdocumentor/reflection-docblock": "^6.0",
|
||||
"phpdocumentor/type-resolver": "^2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"pestphp/pest": "^4.4",
|
||||
"phpstan/phpstan": "^2.1",
|
||||
"friendsofphp/php-cs-fixer": "^3.94",
|
||||
"orchestra/testbench": "^9.16"
|
||||
},
|
||||
"license": "GPL-2.0-only",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Icefox\\DTO\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "icefox",
|
||||
"email": "felipe@icefox.sh"
|
||||
}
|
||||
],
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue