Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Commit

Permalink
Minor cleanup (#1)
Browse files Browse the repository at this point in the history
* Standardise xml file naming

* Add .gitattributes

* composer.json: Use tabs consistently for indenting

* composer.json: Simplify scripts
  • Loading branch information
reedy authored Aug 30, 2022
1 parent d60737d commit 06dcba1
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 31 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.* export-ignore
tests/ export-ignore
composer.json export-ignore
composer.lock export-ignore
phpunit.xml.dist export-ignore
File renamed without changes.
62 changes: 31 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"name": "theresnotime/ipa-validator",
"description": "Composer package for validating and normalizing IPA",
"type": "library",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/theresnotime/php-ipa-validator/issues"
},
"autoload": {
"psr-4": {
"TheresNoTime\\IPAValidator\\": "src/"
}
},
"authors": [
{
"name": "TheresNoTime",
"email": "[email protected]"
}
],
"require-dev": {
"mediawiki/mediawiki-codesniffer": "39.0.0",
"name": "theresnotime/ipa-validator",
"description": "Composer package for validating and normalizing IPA",
"type": "library",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/theresnotime/php-ipa-validator/issues"
},
"autoload": {
"psr-4": {
"TheresNoTime\\IPAValidator\\": "src/"
}
},
"authors": [
{
"name": "TheresNoTime",
"email": "[email protected]"
}
],
"require-dev": {
"mediawiki/mediawiki-codesniffer": "39.0.0",
"mediawiki/minus-x": "1.1.1",
"mediawiki/mediawiki-phan-config": "0.11.1",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"@phpcs",
Expand All @@ -36,14 +36,14 @@
"minus-x fix .",
"phpcbf"
],
"full-test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"full-test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"@phpcs",
"minus-x check .",
"@phpunit"
],
"phan": "./vendor/bin/phan -d . --long-progress-bar",
"phpcs": "./vendor/bin/phpcs -sp --cache",
"phpunit": "./vendor/bin/phpunit --colors=always -c phpunit.xml"
"@phpunit"
],
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache",
"phpunit": "phpunit --colors=always"
}
}
File renamed without changes.

0 comments on commit 06dcba1

Please sign in to comment.