X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/stripe/stripe-php
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
stripe
/
stripe-php
/
📁
..
📄
.coveralls.github-actions.yml
(90 B)
📄
.editorconfig
(268 B)
📄
.gitignore
(612 B)
📄
.php_cs.dist
(1.26 KB)
📄
CHANGELOG.md
(43.51 KB)
📄
CODE_OF_CONDUCT.md
(3.29 KB)
📄
LICENSE
(1.07 KB)
📄
Makefile
(1007 B)
📄
README.md
(10.48 KB)
📄
VERSION
(7 B)
📄
build.php
(640 B)
📄
composer.json
(923 B)
📁
data
📄
init.php
(10.52 KB)
📁
lib
📄
phpdoc.dist.xml
(975 B)
📄
phpstan-baseline.neon
(315 B)
📄
phpstan.neon.dist
(147 B)
📄
update_certs.php
(392 B)
Editing: .php_cs.dist
<?php return PhpCsFixer\Config::create() ->setRiskyAllowed(true) ->setRules([ // Rulesets '@PSR2' => true, '@PhpCsFixer' => true, '@PhpCsFixer:risky' => true, '@PHP56Migration:risky' => true, '@PHPUnit57Migration:risky' => true, // Additional rules 'fopen_flags' => true, 'linebreak_after_opening_tag' => true, 'native_function_invocation' => true, // --- Diffs from @PhpCsFixer / @PhpCsFixer:risky --- // This is just prettier / easier to read. 'concat_space' => ['spacing' => 'one'], // This causes strange ordering with codegen'd classes. We might be // able to enable this if we update codegen to output class elements // in the correct order. 'ordered_class_elements' => false, // Keep this disabled to avoid unnecessary diffs in PHPDoc comments of // codegen'd classes. 'phpdoc_align' => false, // This is a "risky" rule that causes a bug in our codebase. // Specifically, in `StripeObject.updateAttributes` we construct new // `StripeObject`s for metadata. We can't use `self` there because it // needs to be a raw `StripeObject`. 'self_accessor' => false, ]) ;
Upload File
Create Folder