Initial version.
Showing
.editorconfig
0 → 100644
.env
0 → 100644
.env.test
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
bin/cfgen
0 → 100755
composer.json
0 → 100644
| { | |||
| "name": "hhit/cfgen-bundle", | |||
| "type": "library", | |||
| "license": "MIT", | |||
| "authors": [ | |||
| {"name": "Hendrik Heneke", "email": "heneke@gmail.com"} | |||
| ], | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true, | |||
| "require": { | |||
| "php": ">=7.2.5", | |||
| "ext-ctype": "*", | |||
| "ext-iconv": "*", | |||
| "ext-json": "*", | |||
| "paragonie/sodium_compat": "^1.14", | |||
| "symfony/framework-bundle": "5.2.*", | |||
| "symfony/yaml": "4.4.* ||5.2.*", | |||
| "zordius/lightncandy": "^1.2" | |||
| }, | |||
| "require-dev": { | |||
| "friendsofphp/php-cs-fixer": "^2.16", | |||
| "phpunit/phpunit": "^9.5", | |||
| "symfony/console": "4.4.* || 5.2.*", | |||
| "symfony/dotenv": "4.4.* || 5.2.*" | |||
| }, | |||
| "config": { | |||
| "optimize-autoloader": true, | |||
| "preferred-install": { | |||
| "*": "dist" | |||
| }, | |||
| "sort-packages": true | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "HHIT\\ConfigGeneratorBundle\\": "src/" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "HHIT\\ConfigGeneratorBundle\\Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "symfony": { | |||
| "require": "4.4.* || 5.2.*" | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "cfgen:standalone:generate-configs:test": "bin/cfgen -e test cfgen:generate-configs -c tests/cfgen.json --vault symfony --overwrite", | |||
| "php-cs:check": "php-cs-fixer fix --dry-run --stop-on-violation --using-cache=no --rules=-line_ending src", | |||
| "php-cs:fix": "php-cs-fixer fix --using-cache=no src" | |||
| } | |||
| } |
composer.lock
0 → 100644
This diff is collapsed.
phpunit.xml
0 → 100644
Please register or sign in to comment