Repository: mgp25/TikTok Branch: master Commit: 3767b57b7768 Files: 5 Total size: 2.8 KB Directory structure: gitextract_kwndhrha/ ├── .ac-php-conf.json ├── .gitattributes ├── .gitignore ├── .php_cs.dist └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .ac-php-conf.json ================================================ { "use-cscope": null, "tag-dir": "./ac-php-tags", "filter": { "can-use-external-dir": false, "php-file-ext-list": [ "php" ], "php-path-list": [ "./src", "./vendor/guzzlehttp", "./vendor/lazyjsonmapper/lazyjsonmapper/src", "./vendor/psr" ], "php-path-list-without-subdir": [] } } ================================================ FILE: .gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto ================================================ FILE: .gitignore ================================================ # runtime files *.lock # third party libraries vendor/ # temporary editor files *.swp .\#* *.sublime-project *.sublime-workspace # operating system cache files .DS_Store Desktop.ini Thumbs.db # third party libraries vendor/ .php_cs .php_cs.cache test.php # Sessions sessions/ ================================================ FILE: .php_cs.dist ================================================ setFinder( PhpCsFixer\Finder::create() ->in(__DIR__) ) ->setIndent(' ') ->setLineEnding("\n") ->setRules([ '@Symfony' => true, // Override @Symfony rules 'pre_increment' => false, 'blank_line_before_statement' => ['statements' => ['return', 'try', 'throw']], 'phpdoc_align' => ['tags' => ['param', 'throws']], 'method_argument_space' => ['ensure_fully_multiline' => false], 'binary_operator_spaces' => [ 'align_double_arrow' => true, 'align_equals' => false, ], 'phpdoc_annotation_without_dot' => false, 'yoda_style' => [ // Symfony writes their conditions backwards; we use normal order. 'equal' => false, 'identical' => false, 'less_and_greater' => false, ], 'is_null' => [ // Replaces all is_null() with === null. 'use_yoda_style' => false, ], // Custom rules 'align_multiline_comment' => true, 'phpdoc_add_missing_param_annotation' => ['only_untyped' => false], 'ordered_imports' => true, 'phpdoc_order' => true, 'array_syntax' => ['syntax' => 'short'], ]); ================================================ FILE: README.md ================================================ # Terms and conditions - You will NOT use this API for marketing purposes (spam, botting, harassment, massive bulk messaging...). - We do NOT give support to anyone who wants to use this API to send spam or commit other crimes. - We reserve the right to block any user of this repository that does not meet these conditions. ## Legal This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by TikTok or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use at your own risk.