-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b19239
commit 9fb4f5a
Showing
1,227 changed files
with
124,795 additions
and
3,440 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
<?php | ||
namespace ConfigTransformerPrefix202401; | ||
|
||
require __DIR__ . '/config-transformer.php'; |
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,11 @@ | ||
{ | ||
"name": "symplify/config-transformer", | ||
"description": "Convert Symfony YAML/XML format to PHP/YAML", | ||
"description": "Prefixed version of Symfony YAML/XML to PHP/YAML config converter", | ||
"license": "MIT", | ||
"bin": [ | ||
"bin/config-transformer" | ||
], | ||
"require": { | ||
"php": ">=8.2", | ||
"nette/utils": "^3.2", | ||
"sebastian/diff": "^5.0", | ||
"symfony/config": "^6.4", | ||
"symfony/console": "^6.4", | ||
"symfony/dependency-injection": "6.1.*", | ||
"symfony/expression-language": "^6.4", | ||
"symfony/filesystem": "^6.4", | ||
"symfony/finder": "^6.4", | ||
"symfony/yaml": "^6.4", | ||
"symplify/php-config-printer": "^11.3.7", | ||
"webmozart/assert": "^1.11" | ||
}, | ||
"require-dev": { | ||
"cweagans/composer-patches": "^1.7", | ||
"icanhazstring/composer-unused": "0.8.7", | ||
"php-parallel-lint/php-parallel-lint": "^1.3", | ||
"phpstan/extension-installer": "^1.3", | ||
"phpstan/phpstan": "^1.10", | ||
"phpunit/phpunit": "^10.5", | ||
"rector/rector": "^0.19", | ||
"symplify/easy-coding-standard": "^12.1", | ||
"symplify/phpstan-extensions": "^11.4", | ||
"symplify/vendor-patches": "^11.3", | ||
"tomasvotruba/class-leak": "^0.2.6" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Symplify\\ConfigTransformer\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Symplify\\ConfigTransformer\\Tests\\": "tests" | ||
} | ||
"php": ">=7.2" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform-check": false, | ||
"allow-plugins": { | ||
"cweagans/composer-patches": true, | ||
"phpstan/extension-installer": true | ||
} | ||
}, | ||
"extra": { | ||
"patches": { | ||
"symfony/dependency-injection": [ | ||
"patches/symfony-dependency-injection-loader-yamlfileloader-php.patch", | ||
"patches/symfony-dependency-injection-definition-php.patch" | ||
] | ||
}, | ||
"enable-patching": true | ||
}, | ||
"replace": { | ||
"symfony/polyfill-ctype": "*", | ||
"symfony/polyfill-intl-grapheme": "*", | ||
"symfony/polyfill-php74": "*", | ||
"symfony/polyfill-php80": "*", | ||
"symfony/polyfill-php81": "*", | ||
"symfony/polyfill-php82": "*" | ||
}, | ||
"scripts": { | ||
"check-cs": "vendor/bin/ecs check --ansi", | ||
"fix-cs": "vendor/bin/ecs check --fix --ansi", | ||
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify", | ||
"rector": "vendor/bin/rector process --dry-run --ansi" | ||
} | ||
"bin": [ | ||
"bin/config-transformer" | ||
] | ||
} |
Oops, something went wrong.