1
0
Fork 0
mirror of https://github.com/archtechx/helpers.git synced 2025-12-12 12:14:02 +00:00
helpers/composer.json

36 lines
859 B
JSON

{
"name": "archtechx/helpers",
"description": "A collection of helpers we commonly use.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel@archte.ch"
}
],
"autoload": {
"files": ["src/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"ArchTech\\Helpers\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"illuminate/support": "^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"pestphp/pest": "^2.0|^3.0",
"pestphp/pest-plugin-laravel": "^2.0|^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}