-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use PHPUnit v57 * Tests updated to use namespaced TestCase, also use class constants where is possible
- Loading branch information
1 parent
f9961ff
commit b426a31
Showing
13 changed files
with
138 additions
and
141 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,36 +1,39 @@ | ||
{ | ||
"name": "ezsystems/ezplatform-xmltext-fieldtype", | ||
"description": "XmlText field type implementation for eZ Platform", | ||
"license": "GPL-2.0", | ||
"type": "ezplatform-bundle", | ||
"authors": [ | ||
{ | ||
"name": "eZ dev-team & eZ Community", | ||
"homepage": "https://github.com/ezsystems/ezplatform-xmltext-fieldtype/contributors" | ||
"name": "ezsystems/ezplatform-xmltext-fieldtype", | ||
"description": "XmlText field type implementation for eZ Platform", | ||
"license": "GPL-2.0", | ||
"type": "ezplatform-bundle", | ||
"authors": [ | ||
{ | ||
"name": "eZ dev-team & eZ Community", | ||
"homepage": "https://github.com/ezsystems/ezplatform-xmltext-fieldtype/contributors" | ||
} | ||
], | ||
"require": { | ||
"ezsystems/ezpublish-kernel": "^6.11@dev" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.7", | ||
"matthiasnoback/symfony-dependency-injection-test": "~1.0", | ||
"ezsystems/ezplatform-solr-search-engine": "^1.0@dev,<1.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\": "bundle", | ||
"eZ\\Publish\\Core\\FieldType\\XmlText\\": "lib/FieldType/XmlText", | ||
"eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\FieldValue\\Converter\\": "lib/Persistence/Legacy/Content/FieldValue/Converter", | ||
"eZ\\Publish\\Core\\REST\\Common\\FieldTypeProcessor\\": "lib/REST/Common/FieldTypeProcessor" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\Tests\\": "tests/bundle", | ||
"EzSystems\\EzPlatformXmlTextFieldType\\Tests\\": "tests/lib" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3.x-dev" | ||
} | ||
} | ||
], | ||
"require": { | ||
"ezsystems/ezpublish-kernel": "^6.11@dev" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.7", | ||
"matthiasnoback/symfony-dependency-injection-test": "0.*", | ||
"zendframework/zend-code": "~2.4.3", | ||
"ezsystems/ezplatform-solr-search-engine": "^1.0@dev,<1.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\": "bundle", | ||
"EzSystems\\EzPlatformXmlTextFieldTypeBundle\\Tests\\": "tests/bundle", | ||
"eZ\\Publish\\Core\\FieldType\\XmlText\\": "lib/FieldType/XmlText", | ||
"eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\FieldValue\\Converter\\": "lib/Persistence/Legacy/Content/FieldValue/Converter", | ||
"eZ\\Publish\\Core\\REST\\Common\\FieldTypeProcessor\\": "lib/REST/Common/FieldTypeProcessor", | ||
"EzSystems\\EzPlatformXmlTextFieldType\\Tests\\": "tests/lib" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.3.x-dev" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.