NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
PHP 49% JavaScript 35% HTML 9% CSS 4% Shell 2% Python 1% Lua 0% Perl 0% Ruby 0% SCSS 0%
Create file Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git

Trace

data/web/inc/lib/vendor/mustangostang/spyc/README.md

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

README.md on main
Author Date Commit Line Code
tinect over 6 years ago f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
1
**Spyc** is a YAML loader/dumper written in pure PHP. Given a YAML document, Spyc will return an array that
Open commit View diff
1 **Spyc** is a YAML loader/dumper written in pure PHP. Given a YAML document, Spyc will return an array that
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
2
you can use however you see fit. Given an array, Spyc will return a string which contains a YAML document 
Open commit View diff
2 you can use however you see fit. Given an array, Spyc will return a string which contains a YAML document
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
3
built from your data.
Open commit View diff
3 built from your data.
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
4
Open commit View diff
4
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
5
**YAML** is an amazingly human friendly and strikingly versatile data serialization language which can be used 
Open commit View diff
5 **YAML** is an amazingly human friendly and strikingly versatile data serialization language which can be used
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
6
for log files, config files, custom protocols, the works. For more information, see http://www.yaml.org.
Open commit View diff
6 for log files, config files, custom protocols, the works. For more information, see http://www.yaml.org.
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
7
Open commit View diff
7
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
8
Spyc supports YAML 1.0 specification.
Open commit View diff
8 Spyc supports YAML 1.0 specification.
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
9
Open commit View diff
9
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
10
## Using Spyc
Open commit View diff
10 ## Using Spyc
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
11
Open commit View diff
11
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
12
Using Spyc is trivial:
Open commit View diff
12 Using Spyc is trivial:
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
13
Open commit View diff
13
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
14
```php
Open commit View diff
14 ```php
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
15
<?php
Open commit View diff
15 <?php
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
16
require_once "spyc.php";
Open commit View diff
16 require_once "spyc.php";
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
17
$Data = Spyc::YAMLLoad('spyc.yaml');
Open commit View diff
17 $Data = Spyc::YAMLLoad('spyc.yaml');
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
18
```
Open commit View diff
18 ```
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
19
Open commit View diff
19
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
20
or (if you prefer functional syntax)
Open commit View diff
20 or (if you prefer functional syntax)
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
21
Open commit View diff
21
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
22
```php
Open commit View diff
22 ```php
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
23
<?php
Open commit View diff
23 <?php
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
24
require_once "spyc.php";
Open commit View diff
24 require_once "spyc.php";
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
25
$Data = spyc_load_file('spyc.yaml');
Open commit View diff
25 $Data = spyc_load_file('spyc.yaml');
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
26
```
Open commit View diff
26 ```
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
27
Open commit View diff
27
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
28
## Donations, anyone?
Open commit View diff
28 ## Donations, anyone?
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
29
Open commit View diff
29
same change f41c2a6

add mustangostang/spyc to composer

Full commit hash
f41c2a688aa0c1f9e13bd64c8c24213a1c1113d9
Author
tinect <[email protected]>
Date
over 6 years ago
Selected line
30
If you find Spyc useful, I'm accepting Bitcoin donations (who doesn't these days?) at 193bEkLP7zMrNLZm9UdUet4puGD5mQiLai
Open commit View diff
30 If you find Spyc useful, I'm accepting Bitcoin donations (who doesn't these days?) at 193bEkLP7zMrNLZm9UdUet4puGD5mQiLai