OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
jwt
/
docs
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:18 AM
rwxr-xr-x
📄
configuration.md
5.15 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
extending-the-library.md
5.33 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
index.md
645 bytes
08/12/2024 10:33:26 AM
rw-r--r--
📄
installation.md
911 bytes
08/12/2024 10:33:26 AM
rw-r--r--
📄
issuing-tokens.md
2.46 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
parsing-tokens.md
1 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
upgrading.md
11.35 KB
08/12/2024 10:33:26 AM
rw-r--r--
📄
validating-tokens.md
2.84 KB
08/12/2024 10:33:26 AM
rw-r--r--
Editing: installation.md
Close
# Installation This package is available on [Packagist] and you can install it using [Composer]. By running the following command you'll add `lcobucci/jwt` as a dependency to your project: ```sh composer require lcobucci/jwt ``` ## Autoloading !!! Note We'll be omitting the autoloader from the code samples to simplify the documentation. In order to be able to use the classes provided by this library you're also required to include [Composer]'s autoloader in your application: ```php require 'vendor/bin/autoload.php'; ``` !!! Tip If you're not familiar with how [composer] works, we highly recommend you to take some time to read it's documentation - especially the [autoloading section]. [Packagist]: https://packagist.org/packages/lcobucci/jwt [Composer]: https://getcomposer.org [autoloading section]: https://getcomposer.org/doc/01-basic-usage.md#autoloading