-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
281ac7b
commit dcac291
Showing
7 changed files
with
73 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"pluginName":"Photo EXIF","pluginDescription":"The plugin reads EXIF data from photos","pluginVersion":"1.0.0","pluginAuthorName":"NTH media","pluginVendorName":"nthmedia","pluginAuthorUrl":"https://nthmedia.nl","pluginAuthorGithub":"","codeComments":"","pluginComponents":["fieldtypes","services","twigextensions"],"consolecommandName":"","controllerName":"","cpsectionName":"","elementName":"","fieldName":"coordinates","modelName":"","purchasableName":"","recordName":"","serviceName":"metadata","taskName":"","utilityName":"","widgetName":"","apiVersion":"api_version_3_0"} | ||
{"pluginName":"Photo EXIF","pluginDescription":"The plugin reads EXIF data from photos","pluginVersion":"2.0.0","pluginAuthorName":"NTH media","pluginVendorName":"nthmedia","pluginAuthorUrl":"https://nthmedia.nl","pluginAuthorGithub":"","codeComments":"","pluginComponents":["fieldtypes","services","twigextensions"],"consolecommandName":"","controllerName":"","cpsectionName":"","elementName":"","fieldName":"coordinates","modelName":"","purchasableName":"","recordName":"","serviceName":"metadata","taskName":"","utilityName":"","widgetName":"","apiVersion":"api_version_3_0"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use craft\ecs\SetList; | ||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; | ||
use Symplify\EasyCodingStandard\ValueObject\Option; | ||
|
||
return static function(ContainerConfigurator $containerConfigurator): void { | ||
$parameters = $containerConfigurator->parameters(); | ||
$parameters->set(Option::PATHS, [ | ||
__DIR__ . '/src', | ||
__FILE__, | ||
]); | ||
$parameters->set(Option::SKIP, [ | ||
__DIR__ . '/tests/_craft/storage', | ||
]); | ||
|
||
$containerConfigurator->import(SetList::CRAFT_CMS_4); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
parameters: | ||
level: 5 | ||
paths: | ||
- src | ||
excludePaths: | ||
scanFiles: | ||
- vendor/twig/twig/src/Extension/CoreExtension.php | ||
bootstrapFiles: | ||
- vendor/yiisoft/yii2/Yii.php | ||
- vendor/craftcms/cms/src/Craft.php | ||
earlyTerminatingMethodCalls: | ||
Craft: | ||
- dd | ||
yii\base\Application: | ||
- end | ||
yii\base\ErrorHandler: | ||
- convertExceptionToError | ||
ignoreErrors: | ||
- '#Call to an undefined method yii\\base\\View:#' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,6 @@ | |
|
||
use nthmedia\photoexif\PhotoExif; | ||
|
||
use Craft; | ||
|
||
/** | ||
* @author NTH media | ||
* @package PhotoExif | ||
|