-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated php version * Updated composer dependencies * Updated workflow
- Loading branch information
1 parent
67131f1
commit e05b942
Showing
18 changed files
with
2,270 additions
and
2,332 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,29 +9,22 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"config": { | ||
"platform": { | ||
"php": "7.2.0" | ||
} | ||
}, | ||
"require": { | ||
"php": "^7.2", | ||
"php": "^7.4|^8.0", | ||
"ext-json": "*", | ||
"laravel/framework": ">=5.4.0" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^1.8", | ||
"squizlabs/php_codesniffer": "^3.4", | ||
"slevomat/coding-standard": "^5.0", | ||
"phpstan/phpstan": "^0.11.8", | ||
"phpunit/phpunit": "^8.0" | ||
"slevomat/coding-standard": "^6.0", | ||
"phpstan/phpstan": "^0.12", | ||
"phpunit/phpunit": "^9.0" | ||
}, | ||
"scripts": { | ||
"cs:check": "vendor/bin/phpcs --colors -ps", | ||
"test:cs": "vendor/bin/phpcs --colors -ps", | ||
"test:stan": "vendor/bin/phpstan analyse src --level=max --ansi", | ||
"test:unit": "vendor/bin/phpunit --testdox --color=always", | ||
"tests": [ | ||
"@cs:check", | ||
"@test:cs", | ||
"@test:stan", | ||
"@test:unit" | ||
] | ||
|
@@ -46,7 +39,7 @@ | |
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\Unit\\Translator\\": "tests/Unit" | ||
"Translator\\Tests\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
|
Oops, something went wrong.