Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via composer

laravel/tinker v2.9.0

Powerful REPL for the Laravel framework.
Package summary
Share
0
issues
2
licenses
39
MIT
1
BSD-3-Clause
Package created
29 Dec 2016
Version published
4 Jan 2024
Maintainers
1
Total deps
40
Direct deps
5
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
39 Packages, Including:
carbonphp/carbon-doctrine-types@3.2.0
doctrine/inflector@2.0.10
illuminate/bus@v11.7.0
illuminate/collections@v11.7.0
illuminate/conditionable@v11.7.0
illuminate/console@v11.7.0
illuminate/container@v11.7.0
illuminate/contracts@v11.7.0
illuminate/events@v11.7.0
illuminate/filesystem@v11.7.0
illuminate/macroable@v11.7.0
illuminate/pipeline@v11.7.0
illuminate/support@v11.7.0
illuminate/view@v11.7.0
laravel/prompts@v0.1.21
laravel/tinker@v2.9.0
nesbot/carbon@3.3.1
nunomaduro/termwind@v2.0.1
psr/clock@1.0.0
psr/container@2.0.2
psr/simple-cache@3.0.0
psy/psysh@v0.12.3
symfony/clock@v7.0.7
symfony/console@v7.0.7
symfony/deprecation-contracts@v3.5.0
symfony/finder@v7.0.7
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/process@v7.0.7
symfony/service-contracts@v3.5.0
symfony/string@v7.0.7
symfony/translation@v7.0.7
symfony/translation-contracts@v3.5.0
symfony/var-dumper@v7.0.7
voku/portable-ascii@2.0.1

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
nikic/php-parser@v5.0.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

5
All Dependencies CSV
ⓘ This is a list of laravel/tinker 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
illuminate/consolev11.7.0-MIT
prod dev
illuminate/contractsv11.7.0-MIT
prod
illuminate/supportv11.7.0-MIT
prod
psy/psyshv0.12.3334.24 kBMIT
prod
symfony/var-dumperv7.0.7-MIT
prod dev

Visualizations

Frequently Asked Questions

What does laravel/tinker do?

Laravel Tinker serves as a powerful and robust REPL (Read–Eval–Print–Loop) for the Laravel framework. This package allows developers to interact with their entire Laravel application from the command line, providing a quick and efficient method to tinker with the app's data, run commands and execute bits of code to test logic before actually implementing it into the application.

How do you use laravel/tinker?

Using Laravel Tinker is quite straightforward. After installing Laravel Tinker via Composer - using the command composer require laravel/tinker - you can enter the Tinker environment by simply running php artisan tinker in your terminal. In this Tinker shell, you can execute any Laravel code or even vanilla PHP code. For instance, if you have a User model in your application, you can tally the total number of users with something like App\Models\User::count();. The result will be promptly displayed in the console. Remember to exit the Tinker environment after you're done by typing exit.

Where are the laravel/tinker docs?

The official Laravel Tinker documentation is available on the Laravel website itself. You can access it by visiting the link: https://laravel.com/docs/artisan#tinker. This documentation provides a comprehensive guide to understanding and using Laravel Tinker effectively, along with examples and common use cases. Make sure to refer to it for the most up-to-date and correct information about Laravel Tinker.