Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
51 lines
1.3 KiB
JSON
Executable File
51 lines
1.3 KiB
JSON
Executable File
{
|
|
"name": "nicmart/tree",
|
|
"description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"keywords": [],
|
|
"authors": [
|
|
{
|
|
"name": "Nicolò Martini",
|
|
"email": "nicmartnic@gmail.com"
|
|
},
|
|
{
|
|
"name": "Andreas Möller",
|
|
"email": "am@localheinz.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
|
|
},
|
|
"require-dev": {
|
|
"ergebnis/composer-normalize": "^2.44.0",
|
|
"ergebnis/license": "^2.6.0",
|
|
"ergebnis/php-cs-fixer-config": "^6.28.1",
|
|
"fakerphp/faker": "^1.24.1",
|
|
"infection/infection": "~0.26.19",
|
|
"phpunit/phpunit": "^9.6.19",
|
|
"psalm/plugin-phpunit": "~0.19.0",
|
|
"vimeo/psalm": "^5.26.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Tree\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tree\\Test\\": "test/"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"ergebnis/composer-normalize": true,
|
|
"infection/extension-installer": true
|
|
},
|
|
"platform": {
|
|
"php": "8.0.25"
|
|
},
|
|
"sort-packages": true
|
|
}
|
|
}
|