-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto format & lint the composer manifest (#2)
* add composer normalizer and run it * remove unused excludes * use tabs for makefile * auto format composer manifest before source code * add lint target * add composer lint to CI workflow
- Loading branch information
1 parent
94de939
commit a9ad055
Showing
5 changed files
with
33 additions
and
24 deletions.
There are no files selected for viewing
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
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
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,13 +1,6 @@ | ||
{ | ||
"name": "jordanbrauer/runes", | ||
"description": "A low-level string character analysis library for PHP.", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jordan Brauer", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"string", | ||
"security", | ||
|
@@ -17,6 +10,24 @@ | |
"utf-32", | ||
"analysis" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jordan Brauer", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1 || >=8.0", | ||
"ext-intl": "*" | ||
}, | ||
"require-dev": { | ||
"ergebnis/composer-normalize": "^2.13", | ||
"friendsofphp/php-cs-fixer": "^2.18", | ||
"pestphp/pest": "^1.0", | ||
"phpunit/phpunit": "^9.3", | ||
"symfony/var-dumper": "^5.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Rune\\": "src/" | ||
|
@@ -27,18 +38,8 @@ | |
"Rune\\Test\\": "tests/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">=7.1 || >=8.0", | ||
"ext-intl": "*" | ||
}, | ||
"require-dev": { | ||
"symfony/var-dumper": "^5.2", | ||
"phpunit/phpunit": "^9.3", | ||
"friendsofphp/php-cs-fixer": "^2.18", | ||
"pestphp/pest": "^1.0" | ||
}, | ||
"scripts": { | ||
"test": "vendor/bin/pest --configuration=./phpunit.xml --testsuite=all --color=always", | ||
"style": "vendor/bin/php-cs-fixer fix --config=.php_cs --show-progress=dots --ansi -v" | ||
"style": "vendor/bin/php-cs-fixer fix --config=.php_cs --show-progress=dots --ansi -v", | ||
"test": "vendor/bin/pest --configuration=./phpunit.xml --testsuite=all --color=always" | ||
} | ||
} |