├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Percy Mamedy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Laravel DevTools 2 | 3 | Collection of Laravel Packages which aims to help developers when 4 | building Laravel Apps. 5 | 6 | #### Developers 7 | * [Laravel 5 IDE Helper Generator](https://github.com/barryvdh/laravel-ide-helper) - Generates a helper file for IDE auto-completion. 8 | * [Laravel API Documentation Generator](https://github.com/mpociot/laravel-apidoc-generator) - Automatically generate your API documentation from your existing Laravel routes. 9 | * [Laravel Generator](http://labs.infyom.com/laravelgenerator/) - Get your APIs and Admin Panel ready in minutes. 10 | * [Laravel 5 Extended Generators](https://github.com/laracasts/Laravel-5-Generators-Extended) - This package extends the core file generators that are included with Laravel 5. 11 | * [Laravel Dot Env Generator](https://github.com/mathiasgrimm/laravel-dot-env-gen) - A Laravel 5 command that generates a .env.gen file containing all environment variables defined in .env as well as any undefined variables that are being used throughout the project. 12 | 13 | #### Debugging & Profiling 14 | * [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar) - Integrates PHP Debug Bar with Laravel. 15 | * [Laravel Log Viewer](https://github.com/rap2hpoutre/laravel-log-viewer) - Small log viewer for laravel. 16 | * [Laravel Query Tracer](https://github.com/fitztrev/query-tracer) - Find exactly where a specific database query is being called in your Laravel application. 17 | * [Nette Tracy for Laravel 5](https://github.com/recca0120/laravel-tracy) - A Laravel Package to integrate Nette Tracy Debugger. 18 | * [Clockwork](https://github.com/itsgoingd/clockwork) - Debugging and profiling your apps with Clockwork Chrome extension. 19 | * [Laravel Mail Preview](https://github.com/themsaid/laravel-mail-preview) - Preview sent mail in browser or email client. 20 | 21 | #### Testing 22 | * [Mailthief](https://github.com/tightenco/mailthief) - MailThief is a fake mailer for Laravel applications (5.0+) that makes it easy to test mail without actually sending any emails. 23 | * [Laravel TestTools](https://chrome.google.com/webstore/detail/laravel-testtools/ddieaepnbjhgcbddafciempnibnfnakl) - Create your Laravel integration tests while you surf on your website. 24 | * [Orchestral Testbench](https://github.com/orchestral/testbench) - Laravel Testing Helper for Packages Development. 25 | 26 | --------------------------------------------------------------------------------