29 lines
626 B
JSON
29 lines
626 B
JSON
{
|
|
"name": "automattic/jetpack-autoloader",
|
|
"description": "Creates a custom autoloader for a plugin or theme.",
|
|
"type": "composer-plugin",
|
|
"license": "GPL-2.0-or-later",
|
|
"require": {
|
|
"composer-plugin-api": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Automattic\\Jetpack\\Autoloader\\": "src"
|
|
}
|
|
},
|
|
"extra": {
|
|
"class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin"
|
|
},
|
|
"scripts": {
|
|
"phpunit": [
|
|
"@composer install",
|
|
"./vendor/phpunit/phpunit/phpunit --colors=always"
|
|
]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|