| /plugin/statistics/vendor/mustangostang/spyc/ |
| H A D | README.md | 1 **Spyc** is a YAML loader/dumper written in pure PHP. Given a YAML document, Spyc will return an ar… 2 you can use however you see fit. Given an array, Spyc will return a string which contains a YAML do… 8 Spyc supports YAML 1.0 specification. 10 ## Using Spyc 12 Using Spyc is trivial: 16 require_once "spyc.php"; 17 $Data = Spyc::YAMLLoad('spyc.yaml'); 24 require_once "spyc.php"; 25 $Data = spyc_load_file('spyc.yaml'); 30 If you find Spyc useful, I'm accepting Bitcoin donations (who doesn't these days?) at 193bEkLP7zMrN…
|
| H A D | composer.json | 2 "name": "mustangostang/spyc", 6 "spyc", 10 "homepage": "https://github.com/mustangostang/spyc/", 20 "files": [ "Spyc.php" ]
|
| H A D | Spyc.php | 3 * Spyc -- A Simple PHP YAML Class 7 * @link https://github.com/mustangostang/spyc/ 10 * @package Spyc 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 42 return Spyc::YAMLDump($data, false, false, true); 46 if (!class_exists('Spyc')) { 57 * $Spyc = new Spyc; 58 * $array = $Spyc->load($file); 62 * $array = Spyc::YAMLLoad($file); [all …]
|
| H A D | spyc.yaml | 6 # websites: [http://www.yaml.org, http://spyc.sourceforge.net/] 10 # spyc.yaml - A file containing the YAML that Spyc understands. 219 Does this line in the end indeed make Spyc go to an infinite loop?
|
| /plugin/statistics/vendor/mustangostang/spyc/examples/ |
| H A D | yaml-load.php | 10 include('../Spyc.php'); 12 $array = Spyc::YAMLLoad('../spyc.yaml'); 14 echo '<pre><a href="spyc.yaml">spyc.yaml</a> loaded into PHP:<br/>'; 20 echo Spyc::YAMLDump($array);
|
| H A D | yaml-dump.php | 12 include('../Spyc.php'); 25 $yaml = Spyc::YAMLDump($array,4,60);
|
| /plugin/statistics/vendor/composer/ |
| H A D | installed.json | 19 "mustangostang/spyc": "*", 77 "name": "mustangostang/spyc", 82 "url": "https://github.com/mustangostang/spyc.git", 87 …"url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5… 107 "Spyc.php" 121 "homepage": "https://github.com/mustangostang/spyc/", 123 "spyc", 128 "issues": "https://github.com/mustangostang/spyc/issues", 129 "source": "https://github.com/mustangostang/spyc/tree/0.6.3" 131 "install-path": "../mustangostang/spyc"
|
| H A D | autoload_files.php | 9 '04c6c5c2f7095ccf6c481d3e53e1776f' => $vendorDir . '/mustangostang/spyc/Spyc.php',
|
| H A D | autoload_static.php | 10 '04c6c5c2f7095ccf6c481d3e53e1776f' => __DIR__ . '/..' . '/mustangostang/spyc/Spyc.php',
|
| H A D | installed.php | 31 'mustangostang/spyc' => array( 36 'install_path' => __DIR__ . '/../mustangostang/spyc',
|
| /plugin/statistics/ |
| H A D | composer.lock | 24 "mustangostang/spyc": "*", 80 "name": "mustangostang/spyc", 84 "url": "https://github.com/mustangostang/spyc.git", 89 …"url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5… 107 "Spyc.php" 121 "homepage": "https://github.com/mustangostang/spyc/", 123 "spyc", 128 "issues": "https://github.com/mustangostang/spyc/issues", 129 "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
|
| H A D | .gitignore | 1 vendor/mustangostang/spyc/tests/
|
| /plugin/statistics/vendor/mustangostang/spyc/php4/ |
| H A D | spyc.php4 | 3 * Spyc -- A Simple PHP YAML Class 7 * @link http://code.google.com/p/spyc/ 10 * @package Spyc 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 44 * $Spyc = new Spyc; 45 * $array = $Spyc->load($file); 49 * $array = Spyc::YAMLLoad($file); 55 * @package Spyc 57 class Spyc { class [all …]
|
| H A D | test.php4 | 8 # websites: [http://www.yaml.org, http://spyc.sourceforge.net/] 21 include('spyc.php4'); 23 $yaml = Spyc::YAMLLoad('../spyc.yaml'); 156 if ($yaml['endloop'] != "Does this line in the end indeed make Spyc go to an infinite loop?") 160 print "spyc.yaml parsed correctly\n";
|
| H A D | 5to4.php | 3 php5to4 ("../spyc.php", 'spyc-latest.php4');
|
| /plugin/statistics/vendor/matomo/device-detector/Yaml/ |
| H A D | Spyc.php | 15 use Spyc as SpycParser; 17 class Spyc implements ParserInterface class 20 * Parses the file with the given filename using Spyc and returns the converted content
|
| /plugin/sketchcanvas/phplib/ |
| D | spyc.php | 3 * Spyc -- A Simple PHP YAML Class 7 * @link http://code.google.com/p/spyc/ 10 * @package Spyc 20 return Spyc::YAMLLoadString($string); 31 return Spyc::YAMLLoad($file); 44 * $Spyc = new Spyc; 45 * $array = $Spyc->load($file); 49 * $array = Spyc::YAMLLoad($file); 55 * @package Spyc 57 class Spyc { class [all …]
|
| D | image.php | 10 require_once "spyc.php"; 18 $drawdata = Spyc::YAMLLoad('data/' . $_GET['fname']); 20 $drawdata = Spyc::YAMLLoadString($_POST['drawdata']); 22 $drawdata = Spyc::YAMLLoadString($_GET['drawdata']);
|
| /plugin/statistics/vendor/matomo/device-detector/ |
| H A D | composer.json | 27 "mustangostang/spyc": "*"
|
| H A D | README.md | 61 // By default Spyc will be used for parsing yaml files. You can also use another yaml parser. 62 // You may need to implement the Yaml Parser facade if you want to use another parser than Spyc or … 152 Device Detector requires a YAML parser. By default `Spyc` parser is used. 158 include_once 'path/to/spyc/Spyc.php';
|
| H A D | DeviceDetector.php | 38 use DeviceDetector\Yaml\Spyc; alias 741 return new Spyc();
|
| /plugin/statistics/vendor/matomo/device-detector/Parser/ |
| H A D | AbstractParser.php | 20 use DeviceDetector\Yaml\Spyc; alias 273 return new Spyc();
|