Initial commit
This commit is contained in:
commit
2d5de9513c
|
@ -0,0 +1 @@
|
||||||
|
/vendor/
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "zoomyboy/table-document",
|
||||||
|
"description": "Table document creator",
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Zoomyboy\\TableDocument\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Philipp Lang",
|
||||||
|
"email": "philipp@zoomyboy.de"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"laravel/framework": "^9.0",
|
||||||
|
"spatie/laravel-data": "^3.0"
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Zoomyboy\TableDocument;
|
||||||
|
|
||||||
|
use Spatie\LaravelData\Data;
|
||||||
|
|
||||||
|
class TableDocumentData extends Data
|
||||||
|
{
|
||||||
|
}
|
Loading…
Reference in New Issue