1
0
Fork 0
mirror of https://github.com/archtechx/airwire.git synced 2025-12-12 02:34:04 +00:00
This commit is contained in:
Samuel Štancl 2021-05-20 20:15:55 +02:00
commit d26fa93f1e
35 changed files with 2388 additions and 0 deletions

32
composer.json Normal file
View file

@ -0,0 +1,32 @@
{
"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",
"pestphp/pest-plugin-laravel": "^1.0.0"
},
"require": {
"illuminate/support": "^8.42",
"illuminate/console": "^8.42",
"orchestra/testbench": "^6.17"
}
}