2019-05-21 11:36:46 +00:00
|
|
|
{
|
|
|
|
"name": "opdavies/php-helpers",
|
|
|
|
"description": "Helper functions for when working with PHP",
|
|
|
|
"type": "library",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Oliver Davies",
|
|
|
|
"email": "oliver@oliverdavies.uk"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"lint": "php-cs-fixer fix",
|
|
|
|
"test": [
|
2019-05-21 12:01:04 +00:00
|
|
|
"composer run test:unit",
|
|
|
|
"composer run lint -- --dry-run"
|
2019-05-21 11:36:46 +00:00
|
|
|
],
|
|
|
|
"test:unit": "phpunit"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"php": "^7.1"
|
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"friendsofphp/php-cs-fixer": "^2.15",
|
2019-05-21 11:52:39 +00:00
|
|
|
"phpunit/phpunit": "^7.5"
|
2019-05-21 11:36:46 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"files": ["src/helpers.php"]
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Tests\\Opdavies\\PhpHelpers\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"config": {
|
2019-05-21 11:52:39 +00:00
|
|
|
"platform": {
|
|
|
|
"php": "7.1.3"
|
|
|
|
},
|
2019-05-21 11:36:46 +00:00
|
|
|
"sort-packages": true
|
|
|
|
}
|
|
|
|
}
|