Skip to content

Commit

Permalink
Fix composer in ci (#256)
Browse files Browse the repository at this point in the history
* Fix composer in ci

* Update UserEditCountPerNsPropertyAnnotator.php

* Update ExifPropertyAnnotator.php

* Update ExifPropertyAnnotator.php

* Update UserEditCountPerNsPropertyAnnotator.php

* Update ApprovedStatusPropertyAnnotatorTest.php

* Update ApprovedStatusPropertyAnnotator.php
  • Loading branch information
paladox authored Feb 19, 2025
1 parent 5f6514b commit d9b21d5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
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

0 comments on commit d9b21d5

Please sign in to comment.