IPM Image Attachment Report
Image reporting plugin for WordPress
by Erik Gripestam · github.com/ipm-ulricehamn/ipm-image-attachment-report
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/ipm-ulricehamn/ipm-image-attachment-report/archive/refs/heads/master.zipDeclares an update source (https://github.com/IPM-Ulricehamn/ipm-image-attachment-report), so updates arrive through the plugin's own updater.
From the readme
"type": "wordpress-plugin" tells Composer that this is a WordPress plugin.
"ipm-ulricehamn/ipm-image-attachment-report" is the GitHub namespace.
Add the plugin to your project
Go to your WordPress installation (which might also be a Git repository), and open or create a composer.json file.
Inside your WordPress installation's composer.json, add your plugin as a VCS (Version Control System) repository:
"type": "vcs" tells Composer that this is a Version Control System (VCS) repository (i.e., a Git repo, rather than a package from Packagist).
"url": "git@github.com:IPM-Ulricehamn/ipm-image-attachment-report.git" is the SSH URL to your private GitHub repository.
"require": define the dependency (your plugin) and the version or branch you want to install (e.g., "dev-master").
"dev-main" refers to the default branch in your Git repository.
By default, Composer assumes main as the primary branch.
If your default branch is master, you need to change "dev-main" to "dev-master".
composer/installers helps Composer know how to handle the installation of WordPress plugins. It ensures that the plugins are installed in the right location (wp-content/plugins/).
If using HTTPS inste