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 | |
final class Json | |
{ | |
/** Equivalent to json_encode() */ | |
public static function fromValue(mixed $value, int $options, int $depth = 512): Json {} | |
/** Just stores the stream */ | |
public static function fromStream($stream): Json {} |
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": { | |
"php": "^7.4", | |
"woohoolabs/larva": "^0.7.0", | |
"woohoolabs/worm": "^0.7.0" | |
}, | |
"config": { | |
"platform": { | |
"php": "7.4" | |
} |
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
class Symlink | |
{ | |
protected $filesystem; | |
/** | |
* Initializes the symlinkking utility. | |
* | |
* @param Filesystem $filesystem | |
*/ | |
public function __construct(Filesystem $filesystem = null) |