mirror of
https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-08-04 00:47:00 +08:00
modified: update-api/composer.json modified: update-api/composer.lock modified: update-api/vendor/composer/autoload_files.php modified: update-api/vendor/composer/autoload_psr4.php modified: update-api/vendor/composer/autoload_static.php modified: update-api/vendor/composer/installed.json modified: update-api/vendor/composer/installed.php
36 lines
1 KiB
JSON
36 lines
1 KiB
JSON
{
|
|
"name": "respect/stringifier",
|
|
"description": "Converts any value to a string",
|
|
"keywords": ["respect", "stringifier", "stringify"],
|
|
"type": "library",
|
|
"homepage": "http://respect.github.io/Stringifier/",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Respect/Stringifier Contributors",
|
|
"homepage": "https://github.com/Respect/Stringifier/graphs/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^2.8",
|
|
"malukenho/docheader": "^0.1.7",
|
|
"phpunit/phpunit": "^6.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Respect\\Stringifier\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/stringify.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"docheader": "vendor/bin/docheader check src/ tests/",
|
|
"test": "vendor/bin/phpunit",
|
|
"test-unit": "vendor/bin/phpunit --testsuite=unit",
|
|
"test-integration": "vendor/bin/phpunit --testsuite=integration"
|
|
}
|
|
}
|