composer.json
{
"name": "bnomei/kirby3-instagram",
"type": "kirby-plugin",
"version": "1.2.0",
"description": "Kirby 3 Plugin to call Instagram API Endpoints",
"license": "MIT",
"authors": [
{
"name": "Bruno Meilick",
"email": "b@bnomei.com"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"instagram",
"instagram-api",
"api",
"token",
"get",
"images",
"endpoints",
"endpoint",
"param",
"any",
"generic"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"getkirby/cms": "^3.2",
"php-coveralls/php-coveralls": "^2.1",
"nunomaduro/phpinsights": "^1.8"
},
"scripts": {
"analyze": "phpstan analyse classes",
"insights": "./vendor/bin/phpinsights -v",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"suggest": {
"bnomei/kirby3-janitor": "Use a Panel Button or PHP code to clear the cache",
"bnomei/kirby3-dotenv": "To load the token from an .env file"
}
}