Skip to content
This repository has been archived by the owner on Jan 24, 2020. It is now read-only.

Commit

Permalink
removed zip, readme installation
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Meilick <[email protected]>
  • Loading branch information
bnomei committed Feb 5, 2019
1 parent b792b5c commit a5f8567
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 30 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# OS files
.DS_Store

kirby3-instagram.zip

# files of Composer dependencies that are not needed for the plugin
/vendor/**/.*
/vendor/**/*.json
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ This plugin is free but if you use it in a commercial project please consider to

## Installation

- for devkit-setup use `composer require bnomei/kirby3-instagram` or
- unzip [master.zip](https://github.com/bnomei/kirby3-instagram/archive/master.zip) as folder `site/plugins/kirby3-instagram` or
- `git submodule add https://github.com/bnomei/kirby3-instagram.git site/plugins/kirby3-instagram` or
- extract latest release of [kirby3-instagram.zip](https://github.com/bnomei/kirby3-instagram/releases/download/v1.0.1/kirby3-instagram.zip) as folder `site/plugins/kirby3-instagram`
- `composer require bnomei/kirby3-instagram`

## Usage

Expand Down
11 changes: 1 addition & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bnomei/kirby3-instagram",
"type": "kirby-plugin",
"version": "1.0.1",
"version": "1.0.2",
"description": "Kirby 3 Plugin to call Instagram API Endpoints",
"license": "MIT",
"authors": [
Expand Down Expand Up @@ -35,14 +35,5 @@
"require": {
"php": ">=7.1.0",
"getkirby/composer-installer": "^1.1"
},
"scripts": {
"zip": [
"touch kirby3-instagram.zip",
"rm kirby3-instagram.zip",
"composer install --no-dev",
"composer dumpautoload -o",
"zip -r kirby3-instagram.zip . -x *.git*"
]
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions vendor/composer/autoload_classmap.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

return array(
'Bnomei\\Instagram' => $baseDir . '/classes/Instagram.php',
'Kirby\\ComposerInstaller\\CmsInstaller' => $vendorDir . '/getkirby/composer-installer/src/CmsInstaller.php',
'Kirby\\ComposerInstaller\\Plugin' => $vendorDir . '/getkirby/composer-installer/src/Plugin.php',
'Kirby\\ComposerInstaller\\PluginInstaller' => $vendorDir . '/getkirby/composer-installer/src/PluginInstaller.php',
'Kirby\\ComposerInstaller\\CmsInstaller' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
'Kirby\\ComposerInstaller\\Plugin' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',
'Kirby\\ComposerInstaller\\PluginInstaller' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php',
);
2 changes: 1 addition & 1 deletion vendor/composer/autoload_psr4.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
$baseDir = dirname($vendorDir);

return array(
'Kirby\\ComposerInstaller\\' => array($vendorDir . '/getkirby/composer-installer/src'),
'Kirby\\' => array($vendorDir . '/getkirby/composer-installer/src'),
'Bnomei\\' => array($baseDir . '/classes'),
);
10 changes: 5 additions & 5 deletions vendor/composer/autoload_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ComposerStaticInitdaaa9d91477643e09e6f0e24cfba50bc
public static $prefixLengthsPsr4 = array (
'K' =>
array (
'Kirby\\ComposerInstaller\\' => 24,
'Kirby\\' => 6,
),
'B' =>
array (
Expand All @@ -18,7 +18,7 @@ class ComposerStaticInitdaaa9d91477643e09e6f0e24cfba50bc
);

public static $prefixDirsPsr4 = array (
'Kirby\\ComposerInstaller\\' =>
'Kirby\\' =>
array (
0 => __DIR__ . '/..' . '/getkirby/composer-installer/src',
),
Expand All @@ -30,9 +30,9 @@ class ComposerStaticInitdaaa9d91477643e09e6f0e24cfba50bc

public static $classMap = array (
'Bnomei\\Instagram' => __DIR__ . '/../..' . '/classes/Instagram.php',
'Kirby\\ComposerInstaller\\CmsInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/CmsInstaller.php',
'Kirby\\ComposerInstaller\\Plugin' => __DIR__ . '/..' . '/getkirby/composer-installer/src/Plugin.php',
'Kirby\\ComposerInstaller\\PluginInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/PluginInstaller.php',
'Kirby\\ComposerInstaller\\CmsInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
'Kirby\\ComposerInstaller\\Plugin' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',
'Kirby\\ComposerInstaller\\PluginInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php',
);

public static function getInitializer(ClassLoader $loader)
Expand Down

0 comments on commit a5f8567

Please sign in to comment.