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 |
|---|---|---|---|---|---|---|---|---|
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Response.php | Response.php | <?php
/**
* provides named constants for
* HTTP protocol status codes.
*
*/
class REST_Response extends Zend_Controller_Response_Http
{
// Informational 1xx
const HTTP_CONTINUE = 100;
const SWITCH_PROTOCOLS = 101;
// Successful 2xx
const OK = 200;
const CREA... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Exception.php | Exception.php | <?php
/**
* REST_Exception
*
* The purpose of class is to provide posibility to work with rest errors
* through exceptions and then handle it in error controller.
*
* Default error http code is 400
*
* Example
* <code>
* switch ($errors->type) {
* case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_N... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Controller/Plugin/RestHandler.php | Controller/Plugin/RestHandler.php | <?php
/**
* Responsible for setting the HTTP Vary header,
* setting the context switch based on the Accept header
* and processing the incoming request formats
*/
class REST_Controller_Plugin_RestHandler extends Zend_Controller_Plugin_Abstract
{
private $dispatcher;
private $defaultFormat = 'html';
pr... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Controller/Action/Helper/RestContexts.php | Controller/Action/Helper/RestContexts.php | <?php
class REST_Controller_Action_Helper_RestContexts extends Zend_Controller_Action_Helper_Abstract
{
public function preDispatch()
{
$frontController = Zend_Controller_Front::getInstance();
$currentMethod = $frontController->getRequest()->getMethod();
$controller = $this->getActionCon... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Controller/Action/Helper/ContextSwitch.php | Controller/Action/Helper/ContextSwitch.php | <?php
/**
* ContextSwitch
*
* extends default context switch and adds AMF3, XML, PHP serialization
*/
class REST_Controller_Action_Helper_ContextSwitch extends Zend_Controller_Action_Helper_ContextSwitch
{
protected $_autoSerialization = true;
// TODO: run through Zend_Serializer::factory()
protected $... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Test/PHPUnit/ControllerTestCase.php | Test/PHPUnit/ControllerTestCase.php | <?php
/**
* Functional testing scaffold for MVC applications
*
* @uses PHPUnit_Framework_TestCase
* @category Zend
* @package Zend_Test
* @subpackage PHPUnit
*/
abstract class REST_Test_PHPUnit_ControllerTestCase extends Zend_Test_PHPUnit_ControllerTestCase
{
/**
* Retrieve test case re... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Test/PHPUnit/ResponseTestCase.php | Test/PHPUnit/ResponseTestCase.php | <?php
/**
* provides named constants for
* HTTP protocol status codes.
*
* Testing class for PHPUnit testing
* @use REST_Response
*/
class REST_ResponseTestCase extends Zend_Controller_Response_HttpTestCase
{
// Informational 1xx
const HTTP_CONTINUE = 100;
const SWITCH_PROTOCOLS = 101;
... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
ahmadnassri/restful-zend-framework | https://github.com/ahmadnassri/restful-zend-framework/blob/1a030f213a133336e9f8caa325ea7c002dc5ef41/Serializer/Adapter/Xml.php | Serializer/Adapter/Xml.php | <?php
class REST_Serializer_Adapter_Xml extends Zend_Serializer_Adapter_AdapterAbstract
{
/**
* @var array Default options
*/
protected $_options = array(
'rootNode' => 'response',
);
/**
* Serialize PHP value to XML
*
* @param mixed $value
* @param array $opts
... | php | MIT | 1a030f213a133336e9f8caa325ea7c002dc5ef41 | 2026-01-05T04:59:58.834463Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Kernel.php | src/Kernel.php | <?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
use Symfony\Component\Routing\RouteCollectionBuilder;
class Kernel e... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Event/RepoStatusChangedEvent.php | src/Event/RepoStatusChangedEvent.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Event;
use App\RecipeRepo\RecipeRepo;
use Symfony\Component\EventDispatcher\Eve... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Entity/Recipe.php | src/Entity/Recipe.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Entity;
use App\RecipeRepo\RecipeRepo;
class Recipe implements \JsonSerializab... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Controller/EndpointController.php | src/Controller/EndpointController.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Controller;
use App\Service\Provider\AliasesProvider;
use App\Service\Provider\... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Controller/WebhookController.php | src/Controller/WebhookController.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Controller;
use App\Service\RecipeRepoManager;
use Symfony\Bundle\FrameworkBund... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Controller/FrontendController.php | src/Controller/FrontendController.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Controller;
use App\Service\Compiler\LocalRecipeCompiler;
use App\Service\Compi... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Traits/ProvidesUnescapedJsonResponsesTrait.php | src/Traits/ProvidesUnescapedJsonResponsesTrait.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Traits;
use Symfony\Component\HttpFoundation\JsonResponse;
/**
* Class Provid... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/RecipeRepo/OfficialRecipeRepo.php | src/RecipeRepo/OfficialRecipeRepo.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\RecipeRepo;
use App\Service\Cache;
use Psr\Log\LoggerInterface;
use Symfony\Com... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/RecipeRepo/ContribRecipeRepo.php | src/RecipeRepo/ContribRecipeRepo.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\RecipeRepo;
use App\Service\Cache;
use Psr\Log\LoggerInterface;
use Symfony\Com... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/RecipeRepo/GitRepo.php | src/RecipeRepo/GitRepo.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\RecipeRepo;
use Cz\Git\GitException;
use Cz\Git\GitRepository;
/**
* Class Git... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/RecipeRepo/PrivateRecipeRepo.php | src/RecipeRepo/PrivateRecipeRepo.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\RecipeRepo;
use App\Service\Cache;
use Psr\Log\LoggerInterface;
use Symfony\Com... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/RecipeRepo/RecipeRepo.php | src/RecipeRepo/RecipeRepo.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\RecipeRepo;
use App\Event\RepoStatusChangedEvent;
use App\Service\Cache;
use Cz... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Exception/RecipeRepoManagerException.php | src/Exception/RecipeRepoManagerException.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Exception;
/**
* Class RecipeRepoManagerException.
*
* @author moay <mv@moay... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Exception/RecipeRepoBackupException.php | src/Exception/RecipeRepoBackupException.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Exception;
/**
* Class RecipeRepoBackupException.
*
* @author moay <mv@moay.... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/EventSubscriber/StatusReportEventSubscriber.php | src/EventSubscriber/StatusReportEventSubscriber.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\EventSubscriber;
use App\Event\RepoStatusChangedEvent;
use App\Service\Compiler... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/EventSubscriber/LocalAliasEventSubscriber.php | src/EventSubscriber/LocalAliasEventSubscriber.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\EventSubscriber;
use App\Event\RepoStatusChangedEvent;
use App\Service\Cache;
u... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/RecipePublicUrlResolver.php | src/Service/RecipePublicUrlResolver.php | <?php
namespace App\Service;
use App\Entity\Recipe;
/**
* Class RecipePublicUrlResolver.
*
* @author Manuel Voss <manuel.voss@i22.de>
*/
class RecipePublicUrlResolver
{
const RECIPE_PREFIXES = [
'bitbucket.org' => '/src/master/',
'default' => '/tree/master/',
];
/**
* @param Rec... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/OfficialEndpointProxy.php | src/Service/OfficialEndpointProxy.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service;
use App\Service\Decoder\JsonResponseDecoder;
use Nyholm\Psr7\Request;
... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/RecipeRepoManager.php | src/Service/RecipeRepoManager.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service;
use App\Exception\RecipeRepoManagerException;
use App\RecipeRepo\Contr... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/CacheClear.php | src/Service/CacheClear.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service;
use App\Service\Compiler\SystemStatusReportCompiler;
use Symfony\Compo... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Cache.php | src/Service/Cache.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service;
use Symfony\Component\Cache\Simple\FilesystemCache;
/**
* Class Cach... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Compiler/PackagesCompiler.php | src/Service/Compiler/PackagesCompiler.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Compiler;
use App\Entity\Recipe;
use Symfony\Component\Finder\Finder;
/... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Compiler/SystemStatusReportCompiler.php | src/Service/Compiler/SystemStatusReportCompiler.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Compiler;
use App\RecipeRepo\ContribRecipeRepo;
use App\RecipeRepo\Offi... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Compiler/LocalRecipeCompiler.php | src/Service/Compiler/LocalRecipeCompiler.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Compiler;
use App\Entity\Recipe;
use App\Service\RecipePublicUrlResolve... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Decoder/JsonResponseDecoder.php | src/Service/Decoder/JsonResponseDecoder.php | <?php
namespace App\Service\Decoder;
use App\Service\Cache;
use Http\Client\Exception\NetworkException;
use Http\Client\HttpClient;
use Nyholm\Psr7\Request;
use Symfony\Component\Cache\Simple\FilesystemCache;
class JsonResponseDecoder
{
/** @var bool */
private $cacheEndpoint;
/** @var HttpClient */
... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Provider/VersionsProvider.php | src/Service/Provider/VersionsProvider.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Provider;
use App\Service\OfficialEndpointProxy;
/**
* Class Versions... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Provider/UlidProvider.php | src/Service/Provider/UlidProvider.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Provider;
use Ulid\Ulid;
/**
* Class UlidProvider.
*
* @author moay... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Provider/AliasesProvider.php | src/Service/Provider/AliasesProvider.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Provider;
use App\Entity\Recipe;
use App\Service\Cache;
use App\Service... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Service/Provider/PackagesProvider.php | src/Service/Provider/PackagesProvider.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Service\Provider;
use App\Entity\Recipe;
use App\Service\Compiler\LocalRecipeCo... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/Recipes/RecipesUpdateCommand.php | src/Command/Recipes/RecipesUpdateCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\Recipes;
/**
* Class RecipesUpdateCommand.
*
* @author moay <mv@moay... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/Recipes/RecipesResetCommand.php | src/Command/Recipes/RecipesResetCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\Recipes;
/**
* Class RecipesResetCommand.
*
* @author moay <mv@moay.... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/Recipes/RecipeRepoManagerCommand.php | src/Command/Recipes/RecipeRepoManagerCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\Recipes;
use App\Exception\RecipeRepoManagerException;
use App\Service\... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/Recipes/RecipesRemoveCommand.php | src/Command/Recipes/RecipesRemoveCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\Recipes;
/**
* Class RecipesRemoveCommand.
*
* @author moay <mv@moay... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/Recipes/RecipesInitializeCommand.php | src/Command/Recipes/RecipesInitializeCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\Recipes;
/**
* Class RecipesInitializeCommand.
*
* @author moay <mv@... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/src/Command/System/SystemStatusCommand.php | src/Command/System/SystemStatusCommand.php | <?php
/*
* This file is part of the moay server-for-symfony-flex package.
*
* (c) moay
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Command\System;
use App\Service\Compiler\SystemStatusReportCompiler;
use Symfon... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/RepoAwareTestCaseTest.php | tests/RepoAwareTestCaseTest.php | <?php
namespace App\Tests;
use PHPUnit\Framework\TestCase;
/**
* Class RepoAwareTestCaseTest.
*
* @author Manuel Voss <manuel.voss@i22.de>
*/
class RepoAwareTestCaseTest extends TestCase
{
public function testRepoFolderDoesntExistOutsideTestCase()
{
$this->assertFalse(is_dir(__DIR__.'/repo/privat... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/RepoAwareTestCase.php | tests/RepoAwareTestCase.php | <?php
namespace App\Tests;
use App\RecipeRepo\RecipeRepo;
use PHPUnit\Framework\TestCase;
/**
* Class RepoAwareTestCase.
*
* @author Manuel Voss <manuel.voss@i22.de>
*/
class RepoAwareTestCase extends TestCase
{
const TEST_REPO_DIR = '/private';
/**
* Sets up the testing folder structure.
*/
... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/Controller/EndpointControllerTest.php | tests/Controller/EndpointControllerTest.php | <?php
namespace App\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class EndpointControllerTest extends WebTestCase
{
public function testUlid()
{
$client = self::createClient();
$client->request('GET', '/ulid');
$response = $client->getResponse();
$t... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/Service/OfficialEndpointProxyTest.php | tests/Service/OfficialEndpointProxyTest.php | <?php
declare(strict_types=1);
namespace App\Tests\Service;
use App\Service\Decoder\JsonResponseDecoder;
use App\Service\OfficialEndpointProxy;
use PHPUnit\Framework\TestCase;
use Prophecy\Argument;
use Prophecy\Prophecy\ObjectProphecy;
class OfficialEndpointProxyTest extends TestCase
{
/**
* @var Official... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/Service/Compiler/LocalRecipeCompilerTest.php | tests/Service/Compiler/LocalRecipeCompilerTest.php | <?php
namespace App\Tests\Service\Compiler;
use App\Entity\Recipe;
use App\Service\Compiler\LocalRecipeCompiler;
use App\Service\RecipePublicUrlResolver;
use App\Service\RecipeRepoManager;
use App\Tests\RepoAwareTestCase;
/**
* Class LocalRecipeCompilerTest.
*
* @author Manuel Voss <manuel.voss@i22.de>
*/
class ... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/Service/Decoder/JsonResponseDecoderTest.php | tests/Service/Decoder/JsonResponseDecoderTest.php | <?php
namespace App\Tests\Service\Decoder;
use App\Service\Cache;
use App\Service\Decoder\JsonResponseDecoder;
use Http\Client\Exception\NetworkException;
use Http\Client\HttpClient;
use Nyholm\Psr7\Request;
use Nyholm\Psr7\Stream;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\M... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/tests/Service/Provider/UlidProviderTest.php | tests/Service/Provider/UlidProviderTest.php | <?php
namespace App\Tests\Service\Provider;
use App\Service\Provider\UlidProvider;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
class UlidProviderTest extends KernelTestCase
{
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
self::bootKernel();
}
pub... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/public/index.php | public/index.php | <?php
use App\Kernel;
use Symfony\Component\Debug\Debug;
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\HttpFoundation\Request;
require __DIR__.'/../vendor/autoload.php';
// The check is to ensure we don't use .env in production
if (!isset($_SERVER['APP_ENV'])) {
if (!class_exists(Dotenv::class)) {
... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
moay/server-for-symfony-flex | https://github.com/moay/server-for-symfony-flex/blob/a495bf3dd7decc4bccd5d1d8a28e258b544920d9/config/bundles.php | config/bundles.php | <?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['a... | php | MIT | a495bf3dd7decc4bccd5d1d8a28e258b544920d9 | 2026-01-05T05:00:08.758100Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/server.php | server.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylorotwell@gmail.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. Thi... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/ItemKitItemTemp.php | app/ItemKitItemTemp.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ItemKitItemTemp extends Model
{
public function item()
{
return $this->belongsTo('App\Item');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/SaleTemp.php | app/SaleTemp.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class SaleTemp extends Model {
public function item()
{
return $this->belongsTo('App\Item');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/ItemKit.php | app/ItemKit.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ItemKit extends Model
{
public function itemkititem()
{
return $this->hasMany('App\ItemKitItem');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/SaleItem.php | app/SaleItem.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class SaleItem extends Model {
public function item()
{
return $this->belongsTo('App\Item');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Customer.php | app/Customer.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Customer extends Model {
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/User.php | app/User.php | <?php
namespace App;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class User extends Mo... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/ItemKitItem.php | app/ItemKitItem.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ItemKitItem extends Model
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Sale.php | app/Sale.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Sale extends Model {
public function user()
{
return $this->belongsTo('App\User');
}
public function customer()
{
return $this->belongsTo('App\Customer');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Receiving.php | app/Receiving.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Receiving extends Model {
public function user()
{
return $this->belongsTo('App\User');
}
public function supplier()
{
return $this->belongsTo('App\Supplier');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Role.php | app/Role.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/ReceivingItem.php | app/ReceivingItem.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class ReceivingItem extends Model {
public function item()
{
return $this->belongsTo('App\Item');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Item.php | app/Item.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Item extends Model {
public function inventory()
{
return $this->hasMany('App\Inventory')->orderBy('id', 'DESC');
}
public function receivingtemp()
{
return $this->hasMany('App\ReceivingTemp')->orderBy('id', 'DESC');... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/UserRole.php | app/UserRole.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class UserRole extends Model
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/ReceivingTemp.php | app/ReceivingTemp.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class ReceivingTemp extends Model {
public function item()
{
return $this->belongsTo('App\Item');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Inventory.php | app/Inventory.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Inventory extends Model {
public function user()
{
return $this->belongsTo('App\User');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/TutaposSetting.php | app/TutaposSetting.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TutaposSetting extends Model
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Supplier.php | app/Supplier.php | <?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Supplier extends Model {
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Jobs/Job.php | app/Jobs/Job.php | <?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
abstract class Job
{
/*
|--------------------------------------------------------------------------
| Queueable Jobs
|--------------------------------------------------------------------------
|
| This job base class provides a central l... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Exceptions/Handler.php | app/Exceptions/Handler.php | <?php
namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
* @var array
*/
protected $dontReport = [
\Symfony\Component... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Helpers/ReportReceivingsDetailed.php | app/Helpers/ReportReceivingsDetailed.php | <?php
use App\ReceivingItem;
class ReportReceivingsDetailed {
public static function receiving_detailed($receiving_id)
{
$receivingitems = ReceivingItem::where('receiving_id', $receiving_id)->get();
return $receivingitems;
}
} | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Helpers/ReportSalesDetailed.php | app/Helpers/ReportSalesDetailed.php | <?php
use App\SaleItem;
class ReportSalesDetailed {
public static function sale_detailed($sale_id)
{
$SaleItems = SaleItem::where('sale_id', $sale_id)->get();
return $SaleItems;
}
} | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/routes.php | app/Http/routes.php | <?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Kernel.php | app/Http/Kernel.php | <?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* @var array
*/
protected $middleware = [
\Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/ItemKitRequest.php | app/Http/Requests/ItemKitRequest.php | <?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class ItemKitRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rule... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/Request.php | app/Http/Requests/Request.php | <?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class Request extends FormRequest
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/EmployeeStoreRequest.php | app/Http/Requests/EmployeeStoreRequest.php | <?php namespace App\Http\Requests;
use App\Http\Requests\Request;
class EmployeeStoreRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/CustomerRequest.php | app/Http/Requests/CustomerRequest.php | <?php namespace App\Http\Requests;
use App\Http\Requests\Request;
use \Response;
class CustomerRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the r... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/SaleRequest.php | app/Http/Requests/SaleRequest.php | <?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class SaleRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules t... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/ReceivingRequest.php | app/Http/Requests/ReceivingRequest.php | <?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class ReceivingRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation ru... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/SupplierRequest.php | app/Http/Requests/SupplierRequest.php | <?php namespace App\Http\Requests;
use App\Http\Requests\Request;
use \Response;
class SupplierRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the r... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/ItemRequest.php | app/Http/Requests/ItemRequest.php | <?php namespace App\Http\Requests;
use App\Http\Requests\Request;
use \Response;
class ItemRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the reque... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Requests/InventoryRequest.php | app/Http/Requests/InventoryRequest.php | <?php namespace App\Http\Requests;
use App\Http\Requests\Request;
class InventoryRequest extends Request {
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/SaleApiController.php | app/Http/Controllers/SaleApiController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class SaleApiController extends Controller {
public function __construct()
{
$this->middleware('auth');
}
/**
* Display a listing of the resource.
*
* @return Response
*/
pu... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ReceivingApiController.php | app/Http/Controllers/ReceivingApiController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Item, App\ItemKit, App\ItemKitItem;
use \Auth, \Redirect, \Validator, \Input, \Session, \Response;
use Illuminate\Http\Request;
class ReceivingApiController extends Controller {
public function __construct()
{... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ReceivingReportController.php | app/Http/Controllers/ReceivingReportController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Receiving;
use \Auth, \Redirect;
use Illuminate\Http\Request;
class ReceivingReportController extends Controller {
public function __construct()
{
$this->middleware('auth');
}
/**
* Display a listing of... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/TutaposSettingController.php | app/Http/Controllers/TutaposSettingController.php | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\TutaposSetting;
use \Auth, \Redirect, \Validator, \Input, \Session;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class TutaposSettingController extends Controller
{
public function __construct()
{
$this->middle... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/Controller.php | app/Http/Controllers/Controller.php | <?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
abstract class Controller extends BaseController
{
use DispatchesJobs, ValidatesRequests;
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ItemKitController.php | app/Http/Controllers/ItemKitController.php | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\ItemKit, App\ItemKitItem, App\ItemKitItemTemp;
use App\Item;
use App\Http\Requests;
use App\Http\Requests\ItemKitRequest;
use \Auth, \Redirect, \Validator, \Input, \Session, \Response;
use App\Http\Controllers\Controller;
class ItemKitControl... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/EmployeeController.php | app/Http/Controllers/EmployeeController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\User;
use App\Http\Requests\EmployeeStoreRequest;
use App\Http\Requests\EmployeeUpdateRequest;
use \Auth, \Redirect, \Validator, \Input, \Session, \Hash;
use Illuminate\Http\Request;
class EmployeeController exte... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/SupplierController.php | app/Http/Controllers/SupplierController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Supplier;
use App\Http\Requests\SupplierRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Image;
use Illuminate\Http\Request;
class SupplierController extends Controller {
public function __const... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ItemController.php | app/Http/Controllers/ItemController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Item;
use App\Inventory;
use App\Http\Requests\ItemRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Image;
use Illuminate\Http\Request;
class ItemController extends Controller {
public function ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/SaleTempApiController.php | app/Http/Controllers/SaleTempApiController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\SaleTemp;
use App\Item;
use \Auth, \Redirect, \Validator, \Input, \Session, \Response;
use Illuminate\Http\Request;
class SaleTempApiController extends Controller {
public function __construct()
{
$this->mid... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/WelcomeController.php | app/Http/Controllers/WelcomeController.php | <?php namespace App\Http\Controllers;
class WelcomeController extends Controller {
/*
|--------------------------------------------------------------------------
| Welcome Controller
|--------------------------------------------------------------------------
|
| This controller renders the "marketing page" for ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/HomeController.php | app/Http/Controllers/HomeController.php | <?php namespace App\Http\Controllers;
use App\Item, App\Customer, App\Sale;
use App\Supplier, App\Receiving, App\User;
use App;
class HomeController extends Controller {
/*
|--------------------------------------------------------------------------
| Home Controller
|---------------------------------------------... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/SaleReportController.php | app/Http/Controllers/SaleReportController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Sale;
use \Auth, \Redirect;
use Illuminate\Http\Request;
class SaleReportController extends Controller {
public function __construct()
{
$this->middleware('auth');
}
/**
* Display a listing of the resou... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/InventoryController.php | app/Http/Controllers/InventoryController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Item;
use App\Inventory;
use App\Http\Requests\InventoryRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Illuminate\Http\Request;
class InventoryController extends Controller {
public function _... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/CustomerController.php | app/Http/Controllers/CustomerController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Customer;
use App\Http\Requests\CustomerRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Image;
use Illuminate\Http\Request;
class CustomerController extends Controller {
public function __const... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.