Skip to content

Fix composer in ci #256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@
}
},
"config": {
"process-timeout": 0
"process-timeout": 0,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": [
Expand Down
2 changes: 1 addition & 1 deletion src/PropertyAnnotators/ApprovedStatusPropertyAnnotator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use SESP\PropertyAnnotator;
use SMW\DIProperty;
use SMW\SemanticData;
use SMWDIString as DIString;
use SMWDIBlob as DIString;

/**
* @private
Expand Down
2 changes: 1 addition & 1 deletion src/PropertyAnnotators/ExifPropertyAnnotator.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
use FormatMetadata;
use SESP\AppFactory;
use SESP\PropertyAnnotator;
use SMW\DataModel\ContainerSemanticData;
use SMW\DIProperty;
use SMW\DIWikiPage;
use SMW\SemanticData;
use SMW\DataModel\ContainerSemanticData as ContainerSemanticData;
use SMWDataItem as DataItem;
use SMWDIBlob as DIBlob;
use SMWDIContainer as DIContainer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

use SESP\AppFactory;
use SESP\PropertyAnnotator;
use SMW\DataModel\ContainerSemanticData;
use SMW\DIProperty;
use SMW\DIWikiPage;
use SMW\SemanticData;
use SMW\DataModel\ContainerSemanticData as ContainerSemanticData;
use SMWDataItem as DataItem;
use SMWDIContainer as DIContainer;
use SMWDINumber as DINumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use SESP\PropertyAnnotators\ApprovedStatusPropertyAnnotator;
use SMW\DIProperty;
use SMWDIString as DIString;
use SMWDIBlob as DIString;

/**
* @covers \SESP\PropertyAnnotators\ApprovedStatusPropertyAnnotator
Expand Down