Skip to content

Commit 2b675c2

Browse files
authored
Merge pull request #6 from wagnerwagner/develop
Added getkirby/composer-installer to composer.json
2 parents f022edb + d1c7a34 commit 2b675c2

File tree

5 files changed

+58
-40
lines changed

5 files changed

+58
-40
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wagnerwagner/merx",
33
"description": "A toolkit to create online shops with Kirby 3",
4-
"version": "1.0.0-beta.1",
4+
"version": "1.3.0",
55
"license": "proprietary",
66
"homepage": "https://merx.wagnerwagner.de",
77
"type": "kirby-plugin",
@@ -16,6 +16,7 @@
1616
"source": "https://github.com/wagnerwagner/merx"
1717
},
1818
"require": {
19+
"getkirby/composer-installer": "^1.1",
1920
"stripe/stripe-php": "^6.28",
2021
"paypal/paypal-checkout-sdk": "^1.0.0"
2122
},

composer.lock

+39-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/autoload_classmap.php

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
$baseDir = dirname($vendorDir);
77

88
return array(
9+
'Kirby\\ComposerInstaller\\CmsInstaller' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
10+
'Kirby\\ComposerInstaller\\Installer' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/Installer.php',
11+
'Kirby\\ComposerInstaller\\Plugin' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',
12+
'Kirby\\ComposerInstaller\\PluginInstaller' => $vendorDir . '/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php',
913
'PayPalCheckoutSdk\\Core\\AccessToken' => $vendorDir . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php',
1014
'PayPalCheckoutSdk\\Core\\AccessTokenRequest' => $vendorDir . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php',
1115
'PayPalCheckoutSdk\\Core\\AuthorizationInjector' => $vendorDir . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AuthorizationInjector.php',

vendor/composer/autoload_psr4.php

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111
'Sample\\' => array($vendorDir . '/paypal/paypal-checkout-sdk/samples'),
1212
'PayPalHttp\\' => array($vendorDir . '/paypal/paypalhttp/lib/PayPalHttp'),
1313
'PayPalCheckoutSdk\\' => array($vendorDir . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk'),
14+
'Kirby\\' => array($vendorDir . '/getkirby/composer-installer/src'),
1415
);

vendor/composer/autoload_static.php

+12
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class ComposerStaticInit1a6b0deb482e2dc1bcccd797ab955784
2121
'PayPalHttp\\' => 11,
2222
'PayPalCheckoutSdk\\' => 18,
2323
),
24+
'K' =>
25+
array (
26+
'Kirby\\' => 6,
27+
),
2428
);
2529

2630
public static $prefixDirsPsr4 = array (
@@ -44,9 +48,17 @@ class ComposerStaticInit1a6b0deb482e2dc1bcccd797ab955784
4448
array (
4549
0 => __DIR__ . '/..' . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk',
4650
),
51+
'Kirby\\' =>
52+
array (
53+
0 => __DIR__ . '/..' . '/getkirby/composer-installer/src',
54+
),
4755
);
4856

4957
public static $classMap = array (
58+
'Kirby\\ComposerInstaller\\CmsInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/CmsInstaller.php',
59+
'Kirby\\ComposerInstaller\\Installer' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/Installer.php',
60+
'Kirby\\ComposerInstaller\\Plugin' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/Plugin.php',
61+
'Kirby\\ComposerInstaller\\PluginInstaller' => __DIR__ . '/..' . '/getkirby/composer-installer/src/ComposerInstaller/PluginInstaller.php',
5062
'PayPalCheckoutSdk\\Core\\AccessToken' => __DIR__ . '/..' . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessToken.php',
5163
'PayPalCheckoutSdk\\Core\\AccessTokenRequest' => __DIR__ . '/..' . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AccessTokenRequest.php',
5264
'PayPalCheckoutSdk\\Core\\AuthorizationInjector' => __DIR__ . '/..' . '/paypal/paypal-checkout-sdk/lib/PayPalCheckoutSdk/Core/AuthorizationInjector.php',

0 commit comments

Comments
 (0)