SemanticExtraSpecialProperties/composer.json

74 行
1.9 KiB
JSON

2014-02-07 08:23:50 +08:00
{
"name": "mediawiki/semantic-extra-special-properties",
"type": "mediawiki-extension",
"description": "Provides extra special properties for Semantic MediaWiki",
"keywords": [
"SMW",
"Semantic MediaWiki",
"Wiki",
"MediaWiki",
"properties",
"special properties"
],
"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Extra_Special_Properties",
"license": "GPL-2.0-or-later",
2014-02-07 08:23:50 +08:00
"authors": [
{
"name": "Leo Wallentin",
2017-01-22 10:00:58 +08:00
"homepage": "https://github.com/rotsee",
"role": "Creator"
2014-02-07 08:23:50 +08:00
},
{
2017-01-22 10:00:58 +08:00
"name": "James Hong Kong",
"homepage": "https://semantic-mediawiki.org/wiki/User:MWJames",
"role": "Developer"
2023-03-09 01:29:20 +08:00
},
{
"name": "Jeroen De Dauw",
"homepage": "https://www.entropywins.wtf/",
"role": "Developer"
},
{
"name": "Professional Wiki",
"email": "info@professional.wiki",
"homepage": "https://professional.wiki",
"role": "Maintainer"
2014-02-07 08:23:50 +08:00
}
],
"support": {
2017-01-22 10:00:58 +08:00
"email": "semediawiki-user@lists.sourceforge.net",
"issues": "https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties/issues",
"forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
"wiki": "https://www.semantic-mediawiki.org/wiki/",
"source": "https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties"
2014-02-07 08:23:50 +08:00
},
"require": {
2022-01-26 05:32:54 +08:00
"php": ">=7.3.0",
"composer/installers": ">=1.0.1",
2014-02-07 08:23:50 +08:00
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
2014-02-07 08:23:50 +08:00
}
},
"autoload": {
2015-02-28 22:15:28 +08:00
"psr-4": {
"SESP\\": "src/"
}
2014-12-31 01:58:25 +08:00
},
"config": {
"process-timeout": 0
},
"scripts": {
2023-03-23 22:13:04 +08:00
"test": [
"@phpunit"
],
"test-coverage": [
"@phpunit-coverage"
],
"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --testdox",
"phpunit-coverage": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist --testdox --coverage-text --coverage-html coverage/php --coverage-clover coverage/php/coverage.xml",
"phpdbg": "phpdbg -qrr ../../tests/phpunit/phpunit.php -c phpunit.xml.dist"
2014-02-07 08:23:50 +08:00
}
}