repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/HomeController.php
app/Http/Controllers/HomeController.php
<?php namespace App\Http\Controllers; use Illuminate\View\View; class HomeController extends Controller { /** * Show the home page. * * @return \Illuminate\View\View */ public function __invoke(): View { return view('home'); } }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/SearchEmailController.php
app/Http/Controllers/SearchEmailController.php
<?php namespace App\Http\Controllers; use App\Search; use Illuminate\Support\Facades\Storage; use Symfony\Component\HttpFoundation\BinaryFileResponse; class SearchEmailController extends Controller { /** * Send a file with all the search's emails. * * @param \App\Search $search * @return \Sym...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/DashboardController.php
app/Http/Controllers/DashboardController.php
<?php namespace App\Http\Controllers; use Illuminate\View\View; class DashboardController extends Controller { /** * Show the dashboard page. * * @return \Illuminate\View\View */ public function __invoke(): View { return view('dashboard'); } }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Auth/LoginController.php
app/Http/Controllers/Auth/LoginController.php
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use Illuminate\Foundation\Auth\AuthenticatesUsers; class LoginController extends Controller { /* |-------------------------------------------------------------------------- | Login Controller |----------------------------...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Auth/ForgotPasswordController.php
app/Http/Controllers/Auth/ForgotPasswordController.php
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use Illuminate\Foundation\Auth\SendsPasswordResetEmails; class ForgotPasswordController extends Controller { /* |-------------------------------------------------------------------------- | Password Reset Controller |----...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Auth/ResetPasswordController.php
app/Http/Controllers/Auth/ResetPasswordController.php
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use Illuminate\Foundation\Auth\ResetsPasswords; class ResetPasswordController extends Controller { /* |-------------------------------------------------------------------------- | Password Reset Controller |--------------...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Auth/RegisterController.php
app/Http/Controllers/Auth/RegisterController.php
<?php namespace App\Http\Controllers\Auth; use App\User; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\Validator; use Illuminate\Foundation\Auth\RegistersUsers; class RegisterController extends Controller { /* |-------------------------------------------------------------------------- ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Api/UserController.php
app/Http/Controllers/Api/UserController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Requests\UserRequest; use App\Http\Resources\UserResource; use App\User; use Illuminate\Http\Request; class UserController extends ApiController { /** * Show the specified resource. * * @param \Illuminate\Http\Request $request * @return \...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Api/SearchController.php
app/Http/Controllers/Api/SearchController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Requests\SearchRequest; use App\Http\Resources\SearchResource; use App\Search; use Illuminate\Http\JsonResponse; use Illuminate\Http\Response; class SearchController extends ApiController { /** * Display the specified resource. * * @param \App...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Api/SearchStatisticsController.php
app/Http/Controllers/Api/SearchStatisticsController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Http\Resources\SearchResource; use App\Search; use Illuminate\Database\Eloquent\Builder; class SearchStatisticsController extends Controller { /** * Show the specified resource. * * @param \App\Search $search ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Api/UserSearchController.php
app/Http/Controllers/Api/UserSearchController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Requests\UserSearchRequest; use App\Http\Resources\SearchCollection; use App\Http\Resources\SearchResource; use App\Jobs\CrawlJob; use App\User; class UserSearchController extends ApiController { /** * Display a listing of the resource. * * @p...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Controllers/Api/ApiController.php
app/Http/Controllers/Api/ApiController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use Illuminate\Http\JsonResponse; class ApiController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\JsonResponse */ public function apiIndex(): JsonResponse { ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Middleware/RedirectIfAuthenticated.php
app/Http/Middleware/RedirectIfAuthenticated.php
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Support\Facades\Auth; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @param string|null $guard * @return mixed */ ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Middleware/TrustProxies.php
app/Http/Middleware/TrustProxies.php
<?php namespace App\Http\Middleware; use Illuminate\Http\Request; use Fideloper\Proxy\TrustProxies as Middleware; class TrustProxies extends Middleware { /** * The trusted proxies for this application. * * @var array */ protected $proxies; /** * The headers that should be used t...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Middleware/TrimStrings.php
app/Http/Middleware/TrimStrings.php
<?php namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware; class TrimStrings extends Middleware { /** * The names of the attributes that should not be trimmed. * * @var array */ protected $except = [ 'password', 'password_conf...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Middleware/EncryptCookies.php
app/Http/Middleware/EncryptCookies.php
<?php namespace App\Http\Middleware; use Illuminate\Cookie\Middleware\EncryptCookies as Middleware; class EncryptCookies extends Middleware { /** * The names of the cookies that should not be encrypted. * * @var array */ protected $except = [ // ]; }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Middleware/VerifyCsrfToken.php
app/Http/Middleware/VerifyCsrfToken.php
<?php namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware; class VerifyCsrfToken extends Middleware { /** * The URIs that should be excluded from CSRF verification. * * @var array */ protected $except = [ // ]; }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Resources/UserResource.php
app/Http/Resources/UserResource.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\Resource; class UserResource extends Resource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { return ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Resources/SearchCollection.php
app/Http/Resources/SearchCollection.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\ResourceCollection; class SearchCollection extends ResourceCollection { /** * Transform the resource collection into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toAr...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Http/Resources/SearchResource.php
app/Http/Resources/SearchResource.php
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\Resource; class SearchResource extends Resource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { retur...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Services/Crawler/Crawler.php
app/Services/Crawler/Crawler.php
<?php namespace App\Services\Crawler; use App\Email; use App\Search; use App\Url; use Hedii\Extractors\Extractor; class Crawler { /** * The search instance. * * @var \App\Search */ private $search; /** * The extractor instance. * * @var \Hedii\Extractors\Extractor ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Console/Kernel.php
app/Console/Kernel.php
<?php namespace App\Console; use App\Console\Commands\CrawlCommand; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protec...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Console/Commands/BuildCommand.php
app/Console/Commands/BuildCommand.php
<?php namespace App\Console\Commands; use Illuminate\Console\Command; class BuildCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'crawler:build'; /** * The console command description. * * @var st...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Console/Commands/CrawlCommand.php
app/Console/Commands/CrawlCommand.php
<?php namespace App\Console\Commands; use App\Search; use App\Services\Crawler\Crawler; use Illuminate\Console\Command; class CrawlCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'crawler:crawl {search_id : A search ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Providers/BroadcastServiceProvider.php
app/Providers/BroadcastServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Broadcast; class BroadcastServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { Broadcast::routes();...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Providers/RouteServiceProvider.php
app/Providers/RouteServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\Facades\Route; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; class RouteServiceProvider extends ServiceProvider { /** * This namespace is applied to your controller routes. * * In addition, it is set as th...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Providers/EventServiceProvider.php
app/Providers/EventServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\Facades\Event; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; class EventServiceProvider extends ServiceProvider { /** * The event listener mappings for the application. * * @var array */ protected...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Providers/AppServiceProvider.php
app/Providers/AppServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { // } /** * Register any application services. * ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Providers/AuthServiceProvider.php
app/Providers/AuthServiceProvider.php
<?php namespace App\Providers; use App\Policies\SearchPolicy; use App\Policies\UserPolicy; use App\Search; use App\User; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; use Laravel\Passport\Passport; class AuthServiceProvider extends ServiceProvider { /** * The policy map...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Policies/UserPolicy.php
app/Policies/UserPolicy.php
<?php namespace App\Policies; use App\User; use Illuminate\Auth\Access\HandlesAuthorization; class UserPolicy { use HandlesAuthorization; /** * Determine whether the user can view the model. * * @param \App\User $user * @param \App\User $model * @return bool */ public funct...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/app/Policies/SearchPolicy.php
app/Policies/SearchPolicy.php
<?php namespace App\Policies; use App\User; use App\Search; use Illuminate\Auth\Access\HandlesAuthorization; class SearchPolicy { use HandlesAuthorization; /** * Determine whether the user can view the search. * * @param \App\User $user * @param \App\Search $search * @return bool ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/bootstrap/app.php
bootstrap/app.php
<?php /* |-------------------------------------------------------------------------- | Create The Application |-------------------------------------------------------------------------- | | The first thing we will do is create a new Laravel application instance | which serves as the "glue" for all the components of La...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/TestCase.php
tests/TestCase.php
<?php namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { use CreatesApplication; }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/CreatesApplication.php
tests/CreatesApplication.php
<?php namespace Tests; use Illuminate\Contracts\Console\Kernel; trait CreatesApplication { /** * Creates the application. * * @return \Illuminate\Foundation\Application */ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; $app->make...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/UserEmailTest.php
tests/Feature/UserEmailTest.php
<?php namespace Tests\Feature; use App\Email; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class UserEmailTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_to_down...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/SearchEmailTest.php
tests/Feature/SearchEmailTest.php
<?php namespace Tests\Feature; use App\Email; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class SearchEmailTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_to_do...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/User/MeUserTest.php
tests/Feature/Api/User/MeUserTest.php
<?php namespace Tests\Feature\Api\User; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class MeUserTest extends TestCase { use RefreshDatabase; /** @test */ public function only_authenticated_user_can_use_this_route() { $thi...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/User/UpdateUserTest.php
tests/Feature/Api/User/UpdateUserTest.php
<?php namespace Tests\Feature\Api\User; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class UpdateUserTest extends TestCase { use RefreshDatabase; /** @test */ public function only_authenticated_user_can_use_this_route() { ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/Search/ShowSearchStatisticsTest.php
tests/Feature/Api/Search/ShowSearchStatisticsTest.php
<?php namespace Tests\Feature\Api\Search; use App\Email; use App\Search; use App\Url; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class ShowSearchStatisticsTest extends TestCase { use RefreshDatabase; /** @test */ public function a_u...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/Search/ShowSearchTest.php
tests/Feature/Api/Search/ShowSearchTest.php
<?php namespace Tests\Feature\Api\Search; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class ShowSearchTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_to_see_a_s...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/Search/DestroySearchTest.php
tests/Feature/Api/Search/DestroySearchTest.php
<?php namespace Tests\Feature\Api\Search; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class DestroySearchTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_to_dest...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/Search/UpdateSearchTest.php
tests/Feature/Api/Search/UpdateSearchTest.php
<?php namespace Tests\Feature\Api\Search; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class UpdateSearchTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_to_updat...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/UserSearch/StoreUserSearchTest.php
tests/Feature/Api/UserSearch/StoreUserSearchTest.php
<?php namespace Tests\Feature\Api\UserSearch; use App\Jobs\CrawlJob; use App\Search; use App\User; use Illuminate\Http\Response; use Illuminate\Support\Facades\Bus; use Tests\TestCase; use Illuminate\Foundation\Testing\RefreshDatabase; class StoreUserSearchTest extends TestCase { use RefreshDatabase; /** @t...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Feature/Api/UserSearch/IndexUserSearchTest.php
tests/Feature/Api/UserSearch/IndexUserSearchTest.php
<?php namespace Tests\Feature\Api\UserSearch; use App\Search; use App\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Http\Response; use Tests\TestCase; class IndexUserSearchTest extends TestCase { use RefreshDatabase; /** @test */ public function a_user_has_to_be_authenticated_i...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Unit/EmailTest.php
tests/Unit/EmailTest.php
<?php namespace Tests\Unit; use App\Email; use App\Search; use Tests\TestCase; use Illuminate\Foundation\Testing\RefreshDatabase; class EmailTest extends TestCase { use RefreshDatabase; /** @test */ public function it_should_typecast_its_attributes() { $email = factory(Email::class)->create(...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Unit/UrlTest.php
tests/Unit/UrlTest.php
<?php namespace Tests\Unit; use App\Search; use App\Url; use Tests\TestCase; use Illuminate\Foundation\Testing\RefreshDatabase; class UrlTest extends TestCase { use RefreshDatabase; /** @test */ public function it_should_typecast_its_attributes() { $url = factory(Url::class)->create(); ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Unit/UserTest.php
tests/Unit/UserTest.php
<?php namespace Tests\Unit; use App\Email; use App\Search; use App\User; use Illuminate\Support\Collection; use Tests\TestCase; use Illuminate\Foundation\Testing\RefreshDatabase; class UserTest extends TestCase { use RefreshDatabase; /** @test */ public function it_should_have_a_searches_relationship() ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/tests/Unit/SearchTest.php
tests/Unit/SearchTest.php
<?php namespace Tests\Unit; use App\Search; use App\User; use Illuminate\Support\Collection; use Tests\TestCase; use Illuminate\Foundation\Testing\RefreshDatabase; class SearchTest extends TestCase { use RefreshDatabase; /** @test */ public function it_should_typecast_its_attributes() { $sea...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/routes/web.php
routes/web.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/routes/channels.php
routes/channels.php
<?php /* |-------------------------------------------------------------------------- | Broadcast Channels |-------------------------------------------------------------------------- | | Here you may register all of the event broadcasting channels that your | application supports. The given channel authorization callba...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/routes/api.php
routes/api.php
<?php /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/routes/console.php
routes/console.php
<?php /* |-------------------------------------------------------------------------- | Console Routes |-------------------------------------------------------------------------- | | This file is where you may define all of your Closure based console | commands. Each Closure is bound to a command instance allowing a | ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/public/index.php
public/index.php
<?php /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |------------------------------------...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/app.php
config/app.php
<?php return [ /* |-------------------------------------------------------------------------- | Application Name |-------------------------------------------------------------------------- | | This value is the name of your application. This value is used when the | framework needs to plac...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/logging.php
config/logging.php
<?php use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- | | This option defines the ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/session.php
config/session.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Session Driver |-------------------------------------------------------------------------- | | This option controls the default session "driver" that will be use...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/queue.php
config/queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving y...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/cache.php
config/cache.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used whil...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/hashing.php
config/hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your ap...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/view.php
config/view.php
<?php return [ /* |-------------------------------------------------------------------------- | View Storage Paths |-------------------------------------------------------------------------- | | Most templating systems load templates from disk. Here you may specify | an array of paths that...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/database.php
config/database.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections below you wish | to use as...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/services.php
config/services.php
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Stripe, Mailgun, ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/filesystems.php
config/filesystems.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. T...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/mail.php
config/mail.php
<?php return [ /* |-------------------------------------------------------------------------- | Mail Driver |-------------------------------------------------------------------------- | | Laravel supports both SMTP and PHP's "mail" function as drivers for the | sending of e-mail. You may s...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/broadcasting.php
config/broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an even...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/config/auth.php
config/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/seeds/UsersTableSeeder.php
database/seeds/UsersTableSeeder.php
<?php use App\User; use Illuminate\Database\Seeder; class UsersTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { factory(User::class)->create([ 'name' => 'test', 'email' => 'test@example.com' ]...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/seeds/DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $this->call(UsersTableSeeder::class); } }
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/factories/UrlFactory.php
database/factories/UrlFactory.php
<?php use App\Search; use App\Url; use Faker\Generator as Faker; $factory->define(Url::class, function (Faker $faker) { return [ 'name' => $faker->url, 'search_id' => function () { return factory(Search::class)->create()->id; }, 'is_crawled' => $faker->boolean ]; })...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/factories/EmailFactory.php
database/factories/EmailFactory.php
<?php use App\Email; use App\Search; use Faker\Generator as Faker; $factory->define(Email::class, function (Faker $faker) { return [ 'name' => $faker->safeEmail, 'search_id' => function () { return factory(Search::class)->create()->id; } ]; });
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/factories/UserFactory.php
database/factories/UserFactory.php
<?php use App\User; use Faker\Generator as Faker; /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | This directory should contain each of the model factory definitions for | your application....
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/factories/SearchFactory.php
database/factories/SearchFactory.php
<?php use App\Search; use App\User; use Faker\Generator as Faker; $factory->define(Search::class, function (Faker $faker) { return [ 'url' => $faker->url, 'user_id' => function () { return factory(User::class)->create()->id; }, 'is_limited' => $faker->boolean, '...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2016_06_01_000004_create_oauth_clients_table.php
database/migrations/2016_06_01_000004_create_oauth_clients_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth_clie...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2018_01_19_205205_create_searches_table.php
database/migrations/2018_01_19_205205_create_searches_table.php
<?php use App\Search; use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSearchesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2018_01_19_212151_create_urls_table.php
database/migrations/2018_01_19_212151_create_urls_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUrlsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('urls', function (B...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2014_10_12_100000_create_password_resets_table.php
database/migrations/2014_10_12_100000_create_password_resets_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePasswordResetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('password...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2018_01_19_203819_create_sessions_table.php
database/migrations/2018_01_19_203819_create_sessions_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSessionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sessions', fun...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php
database/migrations/2016_06_01_000005_create_oauth_personal_access_clients_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthPersonalAccessClientsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::crea...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php
database/migrations/2016_06_01_000002_create_oauth_access_tokens_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthAccessTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2018_01_19_213937_create_emails_table.php
database/migrations/2018_01_19_213937_create_emails_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateEmailsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('emails', functio...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php
database/migrations/2016_06_01_000003_create_oauth_refresh_tokens_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthRefreshTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oaut...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php
database/migrations/2016_06_01_000001_create_oauth_auth_codes_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateOauthAuthCodesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('oauth_au...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/lang/en/passwords.php
resources/lang/en/passwords.php
<?php return [ /* |-------------------------------------------------------------------------- | Password Reset Language Lines |-------------------------------------------------------------------------- | | The following language lines are the default lines which match reasons | that are gi...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/lang/en/pagination.php
resources/lang/en/pagination.php
<?php return [ /* |-------------------------------------------------------------------------- | Pagination Language Lines |-------------------------------------------------------------------------- | | The following language lines are used by the paginator library to build | the simple pag...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/lang/en/validation.php
resources/lang/en/validation.php
<?php return [ /* |-------------------------------------------------------------------------- | Validation Language Lines |-------------------------------------------------------------------------- | | The following language lines contain the default error messages used by | the validator ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/lang/en/auth.php
resources/lang/en/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Language Lines |-------------------------------------------------------------------------- | | The following language lines are used during authentication for various | messages t...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/dashboard.blade.php
resources/views/dashboard.blade.php
@extends('layouts.app') @section('content') <div class="container-fluid"> <div class="row"> <div class="col-lg-2 col-xl-3"> <ul class="nav flex-column mb-4"> <li class="nav-item"> <router-link :to="{ name: 'dashboard' }" ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/home.blade.php
resources/views/home.blade.php
@extends('layouts.app') @section('content') <div class="container"> <div class="row"> <div class="col-md-12"> Home page </div> </div> </div> @endsection
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/auth/login.blade.php
resources/views/auth/login.blade.php
@extends('layouts.app') @section('content') <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col col-sm-10 col-md-9 col-lg-6 col-xl-6"> <div class="card"> <div class="card-header"> Login ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/auth/register.blade.php
resources/views/auth/register.blade.php
@extends('layouts.app') @section('content') <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col col-sm-10 col-md-9 col-lg-6 col-xl-6"> <div class="card"> <div class="card-header"> Registe...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/auth/passwords/email.blade.php
resources/views/auth/passwords/email.blade.php
@extends('layouts.app') @section('content') <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col col-sm-10 col-md-9 col-lg-6 col-xl-6"> <div class="card"> <div class="card-header"> Reset P...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/auth/passwords/reset.blade.php
resources/views/auth/passwords/reset.blade.php
@extends('layouts.app') @section('content') <div class="container"> <div class="row align-items-center justify-content-center"> <div class="col col-sm-10 col-md-9 col-lg-6 col-xl-6"> <div class="card"> <div class="card-header"> Reset P...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/partials/header.blade.php
resources/views/partials/header.blade.php
<header class="site-header"> <nav class="navbar navbar-expand-lg navbar-light bg-light"> <a class="navbar-brand" href="{{ url('/') }}"> {{ config('app.name', 'Laravel') }} </a> <button class="navbar-toggler" type="button" data-toggle="collapse" ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/partials/footer.blade.php
resources/views/partials/footer.blade.php
<footer class="site-footer"> <div class="container"> <div class="row"> <div class="col"> <!-- <p class="text-muted text-center"> &copy;{{ date('Y') }} {{ config('app.name') }} </p> --> </div> ...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/partials/main.blade.php
resources/views/partials/main.blade.php
<main class="site-main" role="main"> @yield('content') </main>
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
hedii/php-crawler
https://github.com/hedii/php-crawler/blob/9de07a738468d0821993b098d9917146eb4365fb/resources/views/layouts/app.blade.php
resources/views/layouts/app.blade.php
<!DOCTYPE html> <html lang="{{ app()->getLocale() }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel'...
php
MIT
9de07a738468d0821993b098d9917146eb4365fb
2026-01-05T05:03:37.929921Z
false
vemcogroup/laravel-translation
https://github.com/vemcogroup/laravel-translation/blob/6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa/src/TranslationServiceProvider.php
src/TranslationServiceProvider.php
<?php namespace Vemcogroup\Translation; use Illuminate\Support\ServiceProvider; use Vemcogroup\Translation\Commands\Scan; use Vemcogroup\Translation\Commands\Upload; use Vemcogroup\Translation\Commands\Download; use Vemcogroup\Translation\Commands\CreateJs; use Vemcogroup\Translation\Commands\AddTerms; class Transla...
php
MIT
6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa
2026-01-05T05:03:46.176465Z
false
vemcogroup/laravel-translation
https://github.com/vemcogroup/laravel-translation/blob/6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa/src/Translation.php
src/Translation.php
<?php namespace Vemcogroup\Translation; use Exception; use GuzzleHttp\Client; use Illuminate\Support\Collection; use Symfony\Component\Finder\Finder; use GuzzleHttp\Exception\GuzzleException; use Symfony\Component\Finder\SplFileInfo; use Symfony\Component\HttpFoundation\Response; use GuzzleHttp\Psr7\Response as Guzzl...
php
MIT
6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa
2026-01-05T05:03:46.176465Z
false
vemcogroup/laravel-translation
https://github.com/vemcogroup/laravel-translation/blob/6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa/src/Exceptions/POEditorException.php
src/Exceptions/POEditorException.php
<?php namespace Vemcogroup\Translation\Exceptions; use Exception; class POEditorException extends Exception { public static function noApiKey(): self { return new static('Missing POEDITOR_API_KEY, please add it in .env'); } public static function noProjectId(): self { return new ...
php
MIT
6bec99ffd1a5da6c1e53e3732203dd2c701b4aaa
2026-01-05T05:03:46.176465Z
false