Skip to content

Commit 0c90b01

Browse files
committed
update namespace
1 parent 0a883a3 commit 0c90b01

10 files changed

+28
-26
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
### Installation
44
Start up the Spryker shop and run:
55
~~~
6-
composer require evl/cloudimage
6+
composer require scaleflex/spryker-cloudimage
77
~~~
88

99
### Configuration in the shop
10-
To get the package running, register the "Evl" namespace into the config_default.php in the KernelConstants::CORE_NAMESPACES
10+
To get the package running, register the "Scaleflex" namespace into the config_default.php in the KernelConstants::CORE_NAMESPACES
1111
~~~
1212
$config[KernelConstants::CORE_NAMESPACES] = [
13-
'Evl',
13+
'Scaleflex',
1414
...
1515
];
1616
~~~
1717
Set these constants in the config, where it is needed. the BaseUrl and the ignoredUrlPaths need to be set according to the use case.
1818
~~~
19-
use Evl\Shared\Cloudimage\CloudimageConstants;
19+
use Scaleflex\Shared\Cloudimage\CloudimageConstants;
2020
2121
$config[CloudimageConstants::TOKEN] = '{{YOUR_TOKEN}}';
2222
$config[CloudimageConstants::BASE_URL] = 'http://yves.de.spryker.local';

composer.json

+10-8
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@
33
"description": "Spryker package to integrate Cloudimage",
44
"type": "library",
55
"license": "MIT",
6+
"keywords": [
7+
"spryker",
8+
"php",
9+
"cdn",
10+
"scaleflex",
11+
"cloudimage"
12+
],
613
"autoload": {
714
"psr-4": {
8-
"Evl\\": "src/Evl/"
15+
"Scaleflex\\": "src/Scaleflex/"
916
}
1017
},
1118
"authors": [
1219
{
13-
"name": "Ellen Wenzel"
14-
},
15-
{
16-
"name": "Linas Linartas"
17-
},
18-
{
19-
"name": "Vincent Christophe"
20+
"name": "Scaleflex",
21+
"email": "[email protected]"
2022
}
2123
],
2224
"minimum-stability": "dev",

src/Evl/Service/Cloudimage/CloudimageConfig.php renamed to src/Scaleflex/Service/Cloudimage/CloudimageConfig.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage;
3+
namespace Scaleflex\Service\Cloudimage;
44

5-
use Evl\Shared\Cloudimage\CloudimageConstants;
5+
use Scaleflex\Shared\Cloudimage\CloudimageConstants;
66
use Spryker\Service\Kernel\AbstractBundleConfig;
77

88
class CloudimageConfig extends AbstractBundleConfig

src/Evl/Service/Cloudimage/CloudimageService.php renamed to src/Scaleflex/Service/Cloudimage/CloudimageService.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage;
3+
namespace Scaleflex\Service\Cloudimage;
44

55
use Spryker\Service\Kernel\AbstractService;
66

77
/**
8-
* @method \Evl\Service\Cloudimage\CloudimageServiceFactory getFactory()
8+
* @method \Scaleflex\Service\Cloudimage\CloudimageServiceFactory getFactory()
99
*/
1010
class CloudimageService extends AbstractService implements CloudimageServiceInterface
1111
{

src/Evl/Service/Cloudimage/CloudimageServiceFactory.php renamed to src/Scaleflex/Service/Cloudimage/CloudimageServiceFactory.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage;
3+
namespace Scaleflex\Service\Cloudimage;
44

5-
use Evl\Service\Cloudimage\Converter\CloudimageUrlConverter;
6-
use Evl\Service\Cloudimage\Converter\CloudimageUrlConverterInterface;
5+
use Scaleflex\Service\Cloudimage\Converter\CloudimageUrlConverter;
6+
use Scaleflex\Service\Cloudimage\Converter\CloudimageUrlConverterInterface;
77
use Spryker\Service\Kernel\AbstractServiceFactory;
88

99
/**
10-
* @method \Evl\Service\Cloudimage\CloudimageConfig getConfig()
10+
* @method \Scaleflex\Service\Cloudimage\CloudimageConfig getConfig()
1111
*/
1212
class CloudimageServiceFactory extends AbstractServiceFactory
1313
{
1414
/**
15-
* @return \Evl\Service\Cloudimage\Converter\CloudimageUrlConverterInterface
15+
* @return \Scaleflex\Service\Cloudimage\Converter\CloudimageUrlConverterInterface
1616
*/
1717
public function createCloudimageUrlConverter(): CloudimageUrlConverterInterface
1818
{

src/Evl/Service/Cloudimage/CloudimageServiceInterface.php renamed to src/Scaleflex/Service/Cloudimage/CloudimageServiceInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage;
3+
namespace Scaleflex\Service\Cloudimage;
44

55
interface CloudimageServiceInterface
66
{

src/Evl/Service/Cloudimage/Converter/CloudimageUrlConverter.php renamed to src/Scaleflex/Service/Cloudimage/Converter/CloudimageUrlConverter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage\Converter;
3+
namespace Scaleflex\Service\Cloudimage\Converter;
44

55
class CloudimageUrlConverter implements CloudimageUrlConverterInterface
66
{

src/Evl/Service/Cloudimage/Converter/CloudimageUrlConverterInterface.php renamed to src/Scaleflex/Service/Cloudimage/Converter/CloudimageUrlConverterInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage\Converter;
3+
namespace Scaleflex\Service\Cloudimage\Converter;
44

55
interface CloudimageUrlConverterInterface
66
{

src/Evl/Service/Cloudimage/Plugin/Twig/CloudimageTwigPlugin.php renamed to src/Scaleflex/Service/Cloudimage/Plugin/Twig/CloudimageTwigPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Evl\Service\Cloudimage\Plugin\Twig;
3+
namespace Scaleflex\Service\Cloudimage\Plugin\Twig;
44

55
use Spryker\Service\Kernel\AbstractPlugin;
66
use Spryker\Shared\TwigExtension\Dependency\Plugin\TwigPluginInterface;

src/Evl/Shared/Cloudimage/CloudimageConstants.php renamed to src/Scaleflex/Shared/Cloudimage/CloudimageConstants.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Evl\Shared\Cloudimage;
3+
namespace Scaleflex\Shared\Cloudimage;
44

55
interface CloudimageConstants
66
{

0 commit comments

Comments
 (0)