This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for php on macOS 13.4 | |
Build date: 2023-07-23 23:39:42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for php on macOS 13.4 | |
Build date: 2023-07-23 23:39:42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for php on macOS 13.4 | |
Build date: 2023-07-23 23:39:42 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PWD = `pwd -P` | |
reinstall() { | |
rm -rf ${PWD}/vendor | |
composer install | |
bower install | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for php on macOS 10.15.7 | |
Build date: 2021-07-06 22:39:39 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test</title> | |
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.4/tailwind.min.css'> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/3.2.1/cdn.js" defer></script> | |
</head> | |
<body> | |
<!-- partial:index.partial.html --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# behat.yml | |
default: | |
autoload: [ %paths.base%/../contexts ] | |
suites: | |
core_features: | |
paths: [ %paths.base%/../features ] | |
contexts: [ FeatureContext ] | |
extensions: | |
shvetsgroup\ParallelRunner\Extension: | |
process_count: 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Install this in your base PHPStorm 2018+ folder under .phpstorm.meta.php/container.meta.php and | |
* your $container->get(ThatClass::class) calls will now yield autocomplete magic. | |
*/ | |
namespace PHPSTORM_META { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Retrieve a particular user's rank and details, considering descending sort order on that column | |
* @param $column The column name used for sorting | |
* @param $user_id The user ID whose rank we want to obtain | |
* @return array | |
* @throws \Exception | |
*/ | |
public function getUserRank( $column, $user_id ) | |
{ | |
if( !is_numeric( $user_id ) ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
'controllers' => [ | |
\SilverStarMember\Controller\IndexController::class => [ | |
'@member_css', | |
'@member_js', | |
], | |
], |
NewerOlder