Skip to content

Commit d9b21d5

Browse files
authored
Fix composer in ci (#256)
* Fix composer in ci * Update UserEditCountPerNsPropertyAnnotator.php * Update ExifPropertyAnnotator.php * Update ExifPropertyAnnotator.php * Update UserEditCountPerNsPropertyAnnotator.php * Update ApprovedStatusPropertyAnnotatorTest.php * Update ApprovedStatusPropertyAnnotator.php
1 parent 5f6514b commit d9b21d5

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,11 @@
6464
}
6565
},
6666
"config": {
67-
"process-timeout": 0
67+
"process-timeout": 0,
68+
"allow-plugins": {
69+
"composer/installers": true,
70+
"dealerdirect/phpcodesniffer-composer-installer": true
71+
}
6872
},
6973
"scripts": {
7074
"test": [

src/PropertyAnnotators/ApprovedStatusPropertyAnnotator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use SESP\PropertyAnnotator;
99
use SMW\DIProperty;
1010
use SMW\SemanticData;
11-
use SMWDIString as DIString;
11+
use SMWDIBlob as DIString;
1212

1313
/**
1414
* @private

src/PropertyAnnotators/ExifPropertyAnnotator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
use FormatMetadata;
66
use SESP\AppFactory;
77
use SESP\PropertyAnnotator;
8+
use SMW\DataModel\ContainerSemanticData;
89
use SMW\DIProperty;
910
use SMW\DIWikiPage;
1011
use SMW\SemanticData;
11-
use SMW\DataModel\ContainerSemanticData as ContainerSemanticData;
1212
use SMWDataItem as DataItem;
1313
use SMWDIBlob as DIBlob;
1414
use SMWDIContainer as DIContainer;

src/PropertyAnnotators/UserEditCountPerNsPropertyAnnotator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
use SESP\AppFactory;
66
use SESP\PropertyAnnotator;
7+
use SMW\DataModel\ContainerSemanticData;
78
use SMW\DIProperty;
89
use SMW\DIWikiPage;
910
use SMW\SemanticData;
10-
use SMW\DataModel\ContainerSemanticData as ContainerSemanticData;
1111
use SMWDataItem as DataItem;
1212
use SMWDIContainer as DIContainer;
1313
use SMWDINumber as DINumber;

tests/phpunit/Unit/PropertyAnnotators/ApprovedStatusPropertyAnnotatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use SESP\PropertyAnnotators\ApprovedStatusPropertyAnnotator;
66
use SMW\DIProperty;
7-
use SMWDIString as DIString;
7+
use SMWDIBlob as DIString;
88

99
/**
1010
* @covers \SESP\PropertyAnnotators\ApprovedStatusPropertyAnnotator

0 commit comments

Comments
 (0)