mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-15 06:32:33 +08:00
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"name": "spatie/data-transfer-object",
|
|
"description": "Data transfer objects with batteries included",
|
|
"keywords": [
|
|
"spatie",
|
|
"data-transfer-object"
|
|
],
|
|
"homepage": "https://github.com/spatie/data-transfer-object",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Brent Roose",
|
|
"email": "brent@spatie.be",
|
|
"homepage": "https://spatie.be",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.1|^8.0"
|
|
},
|
|
"require-dev": {
|
|
"larapack/dd": "^1.1",
|
|
"phpunit/phpunit": "^7.0|^9.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Spatie\\DataTransferObject\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Spatie\\DataTransferObject\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit",
|
|
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
|
|
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|