https://github.com/aws/aws-sdk-php-laravel
https://github.com/aws/aws-sdk-php
composer.json:
{
"require": {
package main | |
import ( | |
"log" | |
"net/http" | |
"os" | |
) | |
func main() { | |
cwd, _ := os.Getwd() |
{ | |
"translate_tabs_to_spaces": true, | |
"indent_to_bracket": true, | |
"highlight_line": true, | |
"trim_trailing_white_space_on_save": true, | |
"ensure_newline_at_eof_on_save": true | |
} |
https://github.com/aws/aws-sdk-php-laravel
https://github.com/aws/aws-sdk-php
composer.json:
{
"require": {
#!/bin/bash | |
echo "WEBVTT" | |
echo "" | |
sed '/[0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9][0-9][0-9] --> [0-9][0-9]:[0-9][0-9]:[0-9][0-9],[0-9][0-9][0-9]/s/,/./g' $1 |
<?php | |
return array( | |
'includes' => array('_aws'), | |
'services' => array( | |
'default_settings' => array( | |
'params' => array( | |
'key' => 'KEY', | |
'secret' => 'SECRET', | |
'base_url' => 'http://o.auroraobjects.eu' |
<?php | |
function recursive_array_replace($find, $replace, $array) { | |
if (!is_array($array)) { | |
return str_replace($find, $replace, $array); | |
} | |
$newArray = array(); |