Skip to content

Commit

Permalink
add composer normalize and run it
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Jan 8, 2021
1 parent 87ff0ea commit 0e6cbea
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,26 @@
{
"name": "jordanbrauer/unit-converter",
"description": "Convert standard units from one to another with this easy to use, lightweight package",
"type": "component",
"description": "Convert standard units from one to another with this easy to use, lightweight package",
"license": "MIT",
"authors": [
{
"name": "jordanbrauer",
"email": "[email protected]"
}
],
"scripts": {
"test": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=fullspec --color=always",
"unit": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=unit --color=always",
"integration": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=integration --color=always",
"coverage": "vendor/bin/phpunit --coverage-text --configuration=./phpunit.xml --testsuite=fullspec --color=always",
"clover": "phpunit --coverage-clover=./clover.xml --configuration=./phpunit.xml --testsuite=fullspec --color=never",
"style": "bin/php-cs-fixer fix --config=.php_cs --show-progress=dots --ansi -v",
"report": "vendor/bin/phpmetrics --report-html=report --exclude='.github,.notes,.vscode,bin,docs,node_modules,report,tests,vendor' ."
},
"require": {
"php": "^7.1",
"ext-bcmath": "*"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.19.12",
"consolidation/robo": "^1.2",
"ergebnis/composer-normalize": "^2.13",
"phpmetrics/phpmetrics": "^2.4",
"phpunit/phpunit": "^6.3",
"symfony/var-dumper": "^3.3",
"vlucas/phpdotenv": "^2.4",
"codedungeon/phpunit-result-printer": "^0.19.12",
"phpmetrics/phpmetrics": "^2.4"
"vlucas/phpdotenv": "^2.4"
},
"autoload": {
"psr-4": {
Expand All @@ -40,5 +32,14 @@
"UnitConverter\\Tests\\Integration\\": "tests/integration/",
"UnitConverter\\Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {
"clover": "phpunit --coverage-clover=./clover.xml --configuration=./phpunit.xml --testsuite=fullspec --color=never",
"coverage": "vendor/bin/phpunit --coverage-text --configuration=./phpunit.xml --testsuite=fullspec --color=always",
"integration": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=integration --color=always",
"report": "vendor/bin/phpmetrics --report-html=report --exclude='.github,.notes,.vscode,bin,docs,node_modules,report,tests,vendor' .",
"style": "bin/php-cs-fixer fix --config=.php_cs --show-progress=dots --ansi -v",
"test": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=fullspec --color=always",
"unit": "vendor/bin/phpunit --configuration=./phpunit.xml --testsuite=unit --color=always"
}
}

0 comments on commit 0e6cbea

Please sign in to comment.