Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 13 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
vendor/
composer.lock
# ref: https://github.com/github/gitignore/blob/master/Composer.gitignore

composer.phar
/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock

# php-cs-fixer cache
.php_cs.cache

# PHPUnit cache
.phpunit.result.cache
4 changes: 0 additions & 4 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ return PhpCsFixer\Config::create()
'braces' => false,
'single_blank_line_at_eof' => false,
'blank_line_after_namespace' => false,
'single_quote' => true,
'phpdoc_add_missing_param_annotation' => true,
'no_empty_phpdoc' => true,
'phpdoc_indent' => true,
])
->setFinder(
PhpCsFixer\Finder::create()
Expand Down
604 changes: 300 additions & 304 deletions MuxPhp/Api/AssetsApi.php

Large diffs are not rendered by default.

182 changes: 106 additions & 76 deletions MuxPhp/Api/DeliveryUsageApi.php

Large diffs are not rendered by default.

221 changes: 120 additions & 101 deletions MuxPhp/Api/DimensionsApi.php

Large diffs are not rendered by default.

Loading