This file contains hidden or 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
require File.expand_path("../../Abstract/abstract-php-extension", __FILE__) | |
class Php71Yaml < AbstractPhp71Extension | |
init | |
desc "YAML-1.1 parser and emitter" | |
homepage "https://pecl.php.net/package/yaml" | |
url "https://pecl.php.net/get/yaml-2.0.0.tgz" | |
sha256 "ef13ff56c184290c025a522bf9ae2e1b3ecc8543c3a5161dd02adec90897a221" | |
head "https://github.com/php/pecl-file_formats-yaml.git", :branch => "php7" |
This file contains hidden or 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 | |
namespace Acme\Serializer\Encoder; | |
use Symfony\Component\Serializer\Encoder\DecoderInterface; | |
use Symfony\Component\Serializer\Encoder\EncoderInterface; | |
class PlainEncoder implements EncoderInterface, DecoderInterface | |
{ | |
const FORMAT = 'plain'; |
This file contains hidden or 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
0x659E208C44370AA620e7Cd39d29c8dec030Ae94F |
This file contains hidden or 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
function replay_lambda() { | |
local profile=$1 | |
local fn=$2 | |
sqs_message="initialising..." | |
dlq_arn=$(aws --profile=$profile lambda get-function --function-name "$fn" | jq -r '.Configuration.DeadLetterConfig.TargetArn') | |
dlq=$(aws --profile=$profile sqs get-queue-url --queue-name "$(echo ${dlq_arn##*:})" --output=text) | |
while [ ! -z "$sqs_message" ]; do |
OlderNewer