...
"require": {
"vendor/package": "1.3.2", // exactly 1.3.2 (exact)
// >, <, >=, <= | specify upper / lower bounds
"vendor/package": ">=1.3.2", // anything above or equal to 1.3.2
"vendor/package": "<1.3.2", // anything below 1.3.2
// * | wildcard
on: push | |
name: Run phpunit testsuite | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
# container: | |
# image: lorisleiva/laravel-docker:7.3 | |
steps: | |
- uses: actions/checkout@v1 |
<?php namespace App\Models; | |
use Illuminate\Support\Facades\Validator; | |
use Illuminate\Support\Fluent; | |
class ArrayModel extends Fluent | |
{ | |
public function __construct($data) | |
{ | |
if (($validator = Validator::make($data, $this->rules()))->fails()) { |
Hey y'all! Let's do a Southeast PHP Wurstcon! It's happening on Friday, after the after-party (exact time TBD). | |
The restaurant, Bavarian Bierhaus, is located in the mall next to the Grand Ole Opry: | |
https://goo.gl/maps/qnrPjuBZHXF2 | |
Let me know if you'd like to attend or if you have thoughts on the schedule below! |
// any environment variables grabbed by the environment file and/or shell environment | |
// can be used as properties of process.env like so: | |
console.log(process.env.API_URL); |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Graph databases are now one of the core technologies of companies dealing with highly connected data.
Business graphs, social graphs, knowledge graphs, interest graphs and media graphs are frequently in the (technology) news. And for a reason. The graph model represents a very flexible way of handling relationships in your data. And graph databases provide fast and efficient storage, retrieval and querying for it.
Neo4j, the most popular graph database, has proven that ability to deal with massive amount of high connected data in many use-cases.
<?php | |
/** | |
* Gravity Wiz // Gravity Forms Populate With Entries | |
* | |
* Populate choice-based fields (i.e. drop downs, radios, checkboxes) with data from Gravity Form entries. | |
* | |
* @version 1.0 | |
* @author David Smith <david@gravitywiz.com> | |
* @license GPL-2.0+ | |
* @link http://gravitywiz.com/... |
/** | |
* Formulae and mixins to create any kind of evenly-spaced flexible grid | |
* you can possibly imagine. | |
*/ | |
/** | |
* Our grid settings. Change as desired for your project | |
*/ | |
$columns: 12; // Desired number of columns |