1
0
Fork 0
mirror of https://github.com/archtechx/airwire.git synced 2025-12-12 02:34:04 +00:00
airwire/composer.json
2021-05-22 15:27:53 +02:00

39 lines
929 B
JSON

{
"name": "archtechx/airwire",
"description": "A lightweight full-stack component layer that doesn't dictate your front-end framework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Štancl",
"email": "samuel@archte.ch"
}
],
"autoload": {
"psr-4": {
"Airwire\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Airwire\\Tests\\": "tests/"
}
},
"require-dev": {
"pestphp/pest": "^1.2",
"illuminate/testing": "^8.42",
"orchestra/testbench": "^6.17",
"pestphp/pest-plugin-laravel": "^1.0.0"
},
"require": {
"illuminate/support": "^8.42",
"illuminate/console": "^8.42"
},
"extra": {
"laravel": {
"providers": [
"Airwire\\AirwireServiceProvider"
]
}
}
}