Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
initred committed Jan 30, 2020
1 parent d267eb4 commit 8e1db11
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,51 @@
# laravel-tabula
laravel-tabula is a tool for liberating data tables trapped inside PDF files for the Laravel framework. This package was inspired by Python’s tabula-py package.

### How to install


```
<pre><code>composer require initred/laravel-tabula</code></pre>
```

### Configuration Settings (Needed Java)

[Windows]

http:https://www.oracle.com/technetwork/java/javase/downloads/index.html.

[Mac os]

```
brew update
```
```
brew cask install java
```

[Debian]

```
sudo apt install default-jre
```

[Fedora]

```
sudo dnf install java-latest-openjdk
```

### How to use on Laravel (Example)

```
$tabula = new Tabula('/usr/bin/');
$tabula->parse(
'json',
storage_path('app/public/pdf'),
storage_path('app/public/json')
);
```

### License

laravel-tabula is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

0 comments on commit 8e1db11

Please sign in to comment.