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 |
|---|---|---|---|---|---|---|---|---|
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/config/mail.php | config/mail.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send any email
| messages sent by your appl... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/config/cors.php | config/cors.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Cross-Origin Resource Sharing (CORS) Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your settings for cross-origin resource shar... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/database/factories/UserFactory.php | database/factories/UserFactory.php | <?php
namespace Database\Factories;
use App\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
/**
* @psalm-suppress MissingTemplateParam
*/
class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/database/migrations/2014_10_12_000000_create_users_table.php | database/migrations/2014_10_12_000000_create_users_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function ... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePasswordResetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/database/migrations/2019_08_19_000000_create_failed_jobs_table.php | database/migrations/2019_08_19_000000_create_failed_jobs_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFailedJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('failed_jobs'... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/database/seeders/DatabaseSeeder.php | database/seeders/DatabaseSeeder.php | <?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Hash;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/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 | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/main.blade.php | resources/views/main.blade.php | <x-layout>
<x-header />
<x-nav :popular='$popular' />
<x-movies.index :popular='$popular' :genres='$genres' :trending='$trending' :comedies='$comedies' :action='$action' :western='$western' :horror='$horror' :thriller='$thriller' :animation='$animation' />
<x-footer />
</x-layout>
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/home.blade.php | resources/views/home.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Velflix</title>
<!-- Tailwind CDN -->
{{-- <script src="https://cdn.tailwindcss.com"></script> --}}
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/auth/login.blade.php | resources/views/auth/login.blade.php | <x-layout>
<section class="px-6 py-8">
<main class="mx-auto mt-10 max-w-lg rounded-xl border border-gray-200 bg-gray-100 p-6">
<h1 class="text-center text-xl font-bold">Log In</h1>
<form method="post" action="/login" class="mt-10">
@csrf
<!-- Email -... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/auth/register.blade.php | resources/views/auth/register.blade.php | <x-layout>
<section class="px-6 py-8">
<main class="mx-auto mt-10 max-w-lg rounded-xl border border-gray-200 bg-gray-100 p-6">
<h1 class="text-center text-xl font-bold">Register</h1>
<form action="/register" method="post">
@csrf
<!-- Name -->
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/layout.blade.php | resources/views/errors/layout.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@yield('title')</title>
<!-- Styles -->
<style>
html, body {
background-color: #fff;
color:... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/500.blade.php | resources/views/errors/500.blade.php | @extends('errors::minimal')
@section('title', __('Server Error'))
@section('code', '500')
@section('message', __('Server Error'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/503.blade.php | resources/views/errors/503.blade.php | @extends('errors::minimal')
@section('title', __('Service Unavailable'))
@section('code', '503')
@section('message', __('Service Unavailable'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/429.blade.php | resources/views/errors/429.blade.php | @extends('errors::minimal')
@section('title', __('Too Many Requests'))
@section('code', '429')
@section('message', __('Too Many Requests'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/403.blade.php | resources/views/errors/403.blade.php | @extends('errors::minimal')
@section('title', __('Forbidden'))
@section('code', '403')
@section('message', __($exception->getMessage() ?: 'Forbidden'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/401.blade.php | resources/views/errors/401.blade.php | @extends('errors::minimal')
@section('title', __('Unauthorized'))
@section('code', '401')
@section('message', __('Unauthorized'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/minimal.blade.php | resources/views/errors/minimal.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@yield('title')</title>
<style>
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/404.blade.php | resources/views/errors/404.blade.php | @extends('errors::minimal')
@section('title', __('Not Found'))
@section('code', '404')
@section('message', __('Not Found'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/errors/419.blade.php | resources/views/errors/419.blade.php | @extends('errors::minimal')
@section('title', __('Page Expired'))
@section('code', '419')
@section('message', __('Page Expired'))
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/navbar.blade.php | resources/views/components/navbar.blade.php | <div class="relative flex flex-col bg-gray-300">
<img class="absolute top-0 bottom-0 z-0 h-full w-full object-cover"
src="https://assets.nflxext.com/ffe/siteui/vlv3/e178a4e7-4f52-4661-b2ae-41efa25dca7c/60dd20cf-7213-48a1-b253-6484d62d96a8/IN-en-20210222-popsignuptwoweeks-perspective_alpha_website_small.jpg"... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/flash.blade.php | resources/views/components/flash.blade.php | @if (session()->has('success'))
<div x-data="{show: true}"
x-init="setTimeout(() => show = false, 4000)"
x-show="show"
class="fixed bottom-3 right-3 rounded-xl bg-gray-700 px-4 py-2 text-sm text-white">
<p>{{ session('success') }}</p>
</div>
@endif
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/velflix-card.blade.php | resources/views/components/velflix-card.blade.php | @props(['movie', 'genres'])
<div @click="open = true" class="mr-3 flex flex-col overflow-hidden rounded-md" style="background-color: #181818">
<div @click="open = true" class="w-72">
<a href="{{ route('movies.show', $movie['id']) }}">
<img class="h-56 w-full cursor-pointer"
src="{{ 'ht... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/layout.blade.php | resources/views/components/layout.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Velflix</title>
@vite('resources/css/app.css')
<script defer src="https://unpkg.com/@alpinejs/collaps... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/nav.blade.php | resources/views/components/nav.blade.php | @props(['popular'])
<section class="relative h-screen w-full bg-black">
<div class="absolute z-10 h-full w-full">
<div class="flex h-full items-center justify-start px-16">
<div class="hidden w-2/5 flex-col space-y-4 py-12 lg:flex">
<h1 class="text-6xl font-semibold text-yellow-... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/gap.blade.php | resources/views/components/gap.blade.php | <div class="h-3 w-full" style="background-color: #222"></div>
| php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/rating-script.blade.php | resources/views/components/rating-script.blade.php | @props(['rating', 'slug', 'event'])
<script>
@if ($event) window.livewire.on('{{ $event }}', params => { @endif
@if ($event)
var progressBarContainer = document.getElementById(params.slug)
@else
var progressBarContainer = document.getElementById('{{ $slug }}')
@endif
var bar = new... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/header.blade.php | resources/views/components/header.blade.php | <div class="body-font fixed top-0 z-50 w-full bg-black text-white">
<div class="flex flex-col flex-wrap items-center p-5 px-16 md:flex-row">
<a class="title-font mb-4 flex items-center text-2xl font-bold uppercase md:mb-0" style="color: #e50914">
Velflix
</a>
@auth
<... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/faq.blade.php | resources/views/components/faq.blade.php | <div class="container mx-auto mt-12 px-4 text-center xl:px-64">
<h2 class="text-5xl font-bold">Frequently Asked Questions</h2>
<div x-data="{ active: 1, items: [
{ id: 1, title: 'What is Velflix?', answer: 'Velflix is a streaming service that offers a wide variety of award-winning TV shows, movies, anim... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/icons.blade.php | resources/views/components/icons.blade.php | @props(['name'])
@if ($name === "hand-thumbs-up")
<svg {{ $attributes->class(['text-white w-4 h-4']) }} viewBox="0 0 24 24" >
<path d="M15.167 8.994h3.394l.068.023c1.56.138 2.867.987 2.867 2.73 0 .275-.046.527-.092.78.367.435.596.986.596 1.72 0 .963-.39 1.52-1.032 1.978.023.183.023.252.023.39 0 .963-.39 1.784-1.00... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/footer.blade.php | resources/views/components/footer.blade.php | <footer class="mx-auto max-w-screen-lg py-8 text-sm" style="color: #7c7c7c">
<div class="my-4 ml-6 flex space-x-6" style="color: #808080">
<x-entypo-facebook class="h-w-7 w-7" />
<x-bi-instagram class="h-7 w-7" />
<x-bi-twitter class="h-7 w-7" />
<x-bi-youtube class="h-7 w-7" />
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/movies.blade.php | resources/views/components/movies.blade.php | @props(['movies'])
<div class="">
<div class="mb-4 text-lg antialiased font-bold tracking-wider text-gray-200">
{{ $category }}
</div>
<div class="carousel" data-flickity='{ "freeScroll": true, "wrapAround": true }'
class="carousel flex flex-nowrap">
@foreach ($movies as $movie)
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/newsletter.blade.php | resources/views/components/newsletter.blade.php | <p class="my-3 px-12 text-center">Want us to email you occasionally with Vetflix news?
</p>
<div class="relative mx-auto inline-block lg:bg-gray-100">
<form method="POST" action="/newsletter" class="text-sm lg:flex">
@csrf
<div class="flex items-center lg:py-4 lg:px-12">
<label for="e... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/movies/index.blade.php | resources/views/components/movies/index.blade.php | @props(['popular', 'genres', 'trending', 'comedies', 'action', 'western', 'horror', 'thriller', 'animation'])
<div class="container my-6 mx-auto space-y-8 px-4">
<!-- Popular Movies -->
<x-movies :movies='$popular'>
<x-slot:category> Popular on Velflix › </x-slot:category>
</x-movies>
<!... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/components/movies/show.blade.php | resources/views/components/movies/show.blade.php |
<x-layout>
<div class="flex h-full w-full items-center overflow-y-auto pt-4 shadow-lg">
<div class="container mx-auto overflow-y-auto rounded-lg lg:px-56">
<div class="rounded-xl bg-gray-800">
<div class="responsive-container relative overflow-hidden" style="padding-top: 56.25%"... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/livewire/admin-controller.blade.php | resources/views/livewire/admin-controller.blade.php | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Velflix</title>
<!-- Tailwind CDN -->
@vite('resources/css/app.css')
<!-- Alpine Plugins -->
... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
josuapsianturi/velflix | https://github.com/josuapsianturi/velflix/blob/057684c58e627783f1aa8247fb394d3a8b533d36/resources/views/livewire/search-velflix.blade.php | resources/views/livewire/search-velflix.blade.php | <div class="relative border border-white bg-black p-1 text-white">
<x-bi-search class="absolute m-1 h-5 w-5" />
<input wire:model.debounce.500ms="searchVelflix" type="text" placeholder="Titles, people, genres" class="ml-8 bg-black text-white placeholder-gray-500 focus:outline-none">
@if (strlen($searchVelf... | php | MIT | 057684c58e627783f1aa8247fb394d3a8b533d36 | 2026-01-05T05:17:21.315532Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk.php | src/Disk.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex;
use Arhitector\Yandex\Client\Contai... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/AbstractClient.php | src/AbstractClient.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex;
use Arhitector\Yandex\Client\Except... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/HttpClient.php | src/Client/HttpClient.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client;
use Http\Client\Curl\C... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/OAuth.php | src/Client/OAuth.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client;
use Arhitector\Yandex... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/SimpleKey.php | src/Client/SimpleKey.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client;
use Arhitector\Yandex\... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Container/Collection.php | src/Client/Container/Collection.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Container;
/**
* Колле... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Container/ContainerTrait.php | src/Client/Container/ContainerTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Container;
/**
* Конте... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Stream/Progress.php | src/Client/Stream/Progress.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Stream
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Stream;
use Lam... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Stream/Factory.php | src/Client/Stream/Factory.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Stream
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Stream;
use Htt... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Exception/ForbiddenException.php | src/Client/Exception/ForbiddenException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Exception;
us... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Exception/UnauthorizedException.php | src/Client/Exception/UnauthorizedException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Exception;
us... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Exception/NotFoundException.php | src/Client/Exception/NotFoundException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Exception;
us... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Exception/ServiceException.php | src/Client/Exception/ServiceException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Exception;
us... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Client/Exception/UnsupportedException.php | src/Client/Exception/UnsupportedException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Client\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Client\Exception;
us... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Operation.php | src/Disk/Operation.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk;
use Arhitector\Yandex\Dis... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/AbstractResource.php | src/Disk/AbstractResource.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk;
use Arhitector\Yandex\Clie... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/FilterTrait.php | src/Disk/FilterTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk;
use Arhitector\Yandex\Disk... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Resource/Collection.php | src/Disk/Resource/Collection.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Resource;
use Arhitector\Ya... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Resource/Removed.php | src/Disk/Resource/Removed.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Resource
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Resource;
use Arh... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Resource/Opened.php | src/Disk/Resource/Opened.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Resource
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Resource;
use Arh... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Resource/Closed.php | src/Disk/Resource/Closed.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Resource
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Resource;
use Arh... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Filter/PreviewTrait.php | src/Disk/Filter/PreviewTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Filter
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Filter;
/**
* Фильт... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Filter/MediaTypeTrait.php | src/Disk/Filter/MediaTypeTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Filter;
/**
* Аyдио-файлы.... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Filter/RelativePathTrait.php | src/Disk/Filter/RelativePathTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Filter;
/**
* Относительны... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Filter/TypeTrait.php | src/Disk/Filter/TypeTrait.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Filter;
/**
* Тип - файл/п... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Exception/OutOfSpaceException.php | src/Disk/Exception/OutOfSpaceException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Exception;
use Ht... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/src/Disk/Exception/AlreadyExistsException.php | src/Disk/Exception/AlreadyExistsException.php | <?php
/**
* Часть библиотеки для работы с сервисами Яндекса
*
* @package Arhitector\Yandex\Disk\Exception
* @version 2.0
* @author Arhitector
* @license MIT License
* @copyright 2016 Arhitector
* @link https://github.com/jack-theripper
*/
namespace Arhitector\Yandex\Disk\Exception;
use Ht... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/example/manual_request.php | example/manual_request.php | <?php
/**
* Пример показывает как нестандартный запрос к API Яндекс.Диска.
*/
use Laminas\Diactoros\Request;
require_once __DIR__.'/../vendor/autoload.php';
$token = 'Access Token';
$disk = new Arhitector\Yandex\Disk($token);
// Внимание! В запрос будет передан Access Token
$request = new Request('https://cloud... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/example/disk.php | example/disk.php | <?php
/**
* Created by Arhitector.
* Date: 05.06.2016
* Time: 17:30
*/
error_reporting(E_ALL);
require_once __DIR__.'/../vendor/autoload.php';
$disk = new Arhitector\Yandex\Disk();
$disk->setAccessToken('');
/**
* Список всех файлов на диске, метод getResources([int limit = 20, [int offset = 0]].
* Возвращае... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/example/client_oauth.php | example/client_oauth.php | <?php
/**
* Created by Arhitector.
* Date: 05.06.2016
* Time: 16:47
*/
require_once __DIR__.'/../vendor/autoload.php';
$oauth = new Arhitector\Yandex\Client\OAuth();
var_dump($oauth);
| php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
jack-theripper/yandex | https://github.com/jack-theripper/yandex/blob/49f51b32f76cbfd123bb9fad7fdc63619121a884/example/backup_dir_to_ydisk.php | example/backup_dir_to_ydisk.php | <?php
/**
* This file could be used as an example of uploading the whole directory to YDisk recursively
* or as a ready-to-use command line script, please find usage below, or just run it in console
*/
error_reporting(E_ALL);
require_once __DIR__.'/../vendor/autoload.php';
class YDiskBackup
{
protected $auth... | php | MIT | 49f51b32f76cbfd123bb9fad7fdc63619121a884 | 2026-01-05T05:17:32.521772Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Continue.php | src/ET_Continue.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* This class represents ContinueRequest for SOAP operation.
*/
class ET_Continue extends ET_Constructor
{
/**
* Initializes a new instance of the class.
* @param ET_Client $aut... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_ClickEvent.php | src/ET_ClickEvent.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* Represents ClickEvent Class.
* Contains information regarding a click on a link contained in a message.
*/
class ET_ClickEvent extends ET_GetSupport
{
/**
* @var bool Gets or... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_ProfileAttribute.php | src/ET_ProfileAttribute.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* This class defines any additional attribute for a subscriber.
*/
class ET_ProfileAttribute extends ET_BaseObject
{
/**
* Initializes a new instance of the class and set the since ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_CUDSupport.php | src/ET_CUDSupport.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
use \Exception;
/**
* This class represents the create, update, delete operation for SOAP service.
*/
class ET_CUDSupport extends ET_GetSupport
{
/**
* @return ET_Post Object ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_UnsubEvent.php | src/ET_UnsubEvent.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* Contains information regarding a specific unsubscription action taken by a subscriber.
*/
class ET_UnsubEvent extends ET_GetSupport
{
/**
* @var bool Gets or sets a boolean va... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_PatchRest.php | src/ET_PatchRest.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* This class represents the PATCH operation for REST service.
*/
class ET_PatchRest extends ET_Constructor
{
/**
* Initializes a new instance of the class.
* @param ET_Client $au... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Send.php | src/ET_Send.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* Used to send email and retrieve aggregate data based on a JobID.
*/
class ET_Send extends ET_CUDSupport
{
/**
* Initializes a new instance of the class and sets the obj property o... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Asset.php | src/ET_Asset.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* An asset is an instance of any kind of content in the CMS.
*/
class ET_Asset extends ET_CUDSupportRest
{
/**
* The constructor will assign endpoint, urlProps, urlPropsRequire... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Client.php | src/ET_Client.php | <?php
//require __DIR__ . '/../vendor/autoload.php';
namespace FuelSdk;
use \RobRichards\WsePhp\WSSESoap;
use \Firebase\JWT;
use \Datetime;
use \SoapClient;
use \stdClass;
use \DateInterval;
use \DOMDocument;
use \DOMXPath;
use \Exception;
/**
* Auto load method to load dependent classes
*/
/**
* Defines a Client... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | true |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Constructor.php | src/ET_Constructor.php | <?php
namespace FuelSdk;
/**
* This class represents the contructor for all web service (SOAP/REST) operation and holds HTTP status code, response, result, etc.
*/
class ET_Constructor
{
/**
* @var bool holds the status of the web service operation: true=success, false=failure
*/
public $statu... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_BaseObjectRest.php | src/ET_BaseObjectRest.php | <?php
namespace FuelSdk;
/**
* This class represents the base object for REST operation.
*/
class ET_BaseObjectRest
{
/**
* @var ET_Client The ET client object which performs the auth token, refresh token using clientID clientSecret
*/
public $authStub;
/**
* @var array Dict... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_ExtractDescription.php | src/ET_ExtractDescription.php | <?php
namespace FuelSdk;
/**
* Contains information about the opening of a message send by a subscriber.
*/
class ET_ExtractDescription extends ET_GetSupport
{
/**
* @var bool Gets or sets a boolean value indicating whether this object get since last batch. true if get since last batch; otherwise, false.
... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_SentEvent.php | src/ET_SentEvent.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* Contains tracking data related to a send, including information on individual subscribers.
*/
class ET_SentEvent extends ET_GetSupport
{
/**
* @var bool Gets or sets a boolean... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Email.php | src/ET_Email.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* ET_Email - Represents an email in a Marketing Cloud account.
*/
class ET_Email extends ET_CUDSupport
{
/**
* @var int Gets or sets the folder identifier.
*/
public $folderId;
... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_List.php | src/ET_List.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* This class represents a marketing list of subscribers.
*/
class ET_List extends ET_CUDWithUpsertSupport
{
/**
* @var int Gets or sets the folder identifier.
*/
public ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Util.php | src/ET_Util.php | <?php
namespace FuelSdk;
use \stdClass;
/**
* This utility class performs all the REST operation over CURL.
*/
class ET_Util
{
// Function for calling a Fuel API using GET
/**
* @param string $url The resource URL for the REST API
* @param ET_Client $authStub The ET client object which perfo... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Configure.php | src/ET_Configure.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
use \SoapVar;
/**
* This class represents configurations required for SOAP operation.
*/
class ET_Configure extends ET_Constructor
{
/**
* Initializes a new instance of the class.
* @pa... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_DataExtension.php | src/ET_DataExtension.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* ETDataExtension - Represents a data extension within an account.
*/
class ET_DataExtension extends ET_CUDSupport
{
/**
* @var ET_DataExtension_Column[] Gets or sets array of DE ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_ContentArea.php | src/ET_ContentArea.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* ET_ContentArea - Represents a ContentArea class.
* A ContentArea represents a defined section of reusable content. One or many ContentAreas can be defined for an Email object.
* A ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/autoload.php | src/autoload.php | <?php
// This file can be used if you do not use composer to get all the dependencies.
//Then you need to download all the dependencies manually and change the first require line accordingly.
require __DIR__ . '/../vendor/autoload.php';
spl_autoload_register( function($class_name) {
if (file_exists('src/'.$class_n... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_TriggeredSend.php | src/ET_TriggeredSend.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* Defines a triggered send in the account.
*/
class ET_TriggeredSend extends ET_CUDSupport
{
/**
* @var array Gets or sets the subscribers. e.g. array("EmailAddress" => "", "Subsc... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Perform.php | src/ET_Perform.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
use \SoapVar;
/**
* This class represents the PERFORM operation for SOAP service.
*/
class ET_Perform extends ET_Constructor
{
/**
* Initializes a new instance of the class.
* @param ET... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_OEM_Client.php | src/ET_OEM_Client.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* The class can create and retrieve specific tenant.
*/
class ET_OEM_Client extends ET_Client
{
/**
* @param array $tenantInfo Dictionary type array which may hold e.g. arr... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Post.php | src/ET_Post.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
use \SoapVar;
/**
* This class represents the POST operation for SOAP service.
*/
class ET_Post extends ET_Constructor
{
/**
* Initializes a new instance of the class.
* @param ET_Clien... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
salesforce-marketingcloud/FuelSDK-PHP | https://github.com/salesforce-marketingcloud/FuelSDK-PHP/blob/8494244d071dc60cc709eedd92cbd0f3a7a7c965/src/ET_Email_SendDefinition.php | src/ET_Email_SendDefinition.php | <?php
// spl_autoload_register( function($class_name) {
// include_once 'src/'.$class_name.'.php';
// });
namespace FuelSdk;
/**
* This class contains the message information, sender profile, delivery profile, and audience information.
*/
class ET_Email_SendDefinition extends ET_CUDSupport
{
/** @var int ... | php | MIT | 8494244d071dc60cc709eedd92cbd0f3a7a7c965 | 2026-01-05T05:17:42.419088Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.