1
0
Fork 0
mirror of https://github.com/archtechx/helpers.git synced 2025-12-12 04:04:04 +00:00
helpers/composer.json
lukinovec 8866ced766
Add L10 support (#2)
* Add L10 support wip

* Upgrade `archtechx/enums`

* Allow pest-plugin
2023-02-15 14:42:26 +01:00

37 lines
894 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.1",
"illuminate/support": "^8.24|^9.0|^10.0",
"archtechx/enums": "^0.3.2"
},
"require-dev": {
"orchestra/testbench": "^6.9|^7.0|^8.0",
"pestphp/pest": "^1.2|^2.0",
"pestphp/pest-plugin-laravel": "^1.0|^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}