1
0
Fork 0
mirror of https://github.com/archtechx/airwire.git synced 2025-12-12 02:34:04 +00:00
airwire/composer.json
Abrar Ahmad 04427ab112 wip
2022-02-01 21:59:50 +05:00

41 lines
1,008 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|^9.0",
"orchestra/testbench": "^6.17|^7.0",
"pestphp/pest-plugin-laravel": "^1.0.0"
},
"require": {
"illuminate/support": "^8.42|^9.0",
"illuminate/console": "^8.42|^9.0"
},
"extra": {
"laravel": {
"providers": [
"Airwire\\AirwireServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}