Skip to content
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
8 changes: 6 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "jordikroon/docbook-cs",
"name": "php/docbook-cs",
"description": "A static-analysis linter for DocBook XML files",
"type": "library",
"license": "Apache-2.0",
Expand Down Expand Up @@ -31,7 +31,11 @@
"authors": [
{
"name": "Jordi Kroon",
"email": "jordikroon@me.com"
"email": "jordikroon@php.net"
},
{
"name": "DocbookCS contributors",
"homepage": "https://github.com/php/docbook-cs/graphs/contributors"
}
]
}
6 changes: 3 additions & 3 deletions docbookcs.xml.dist
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<docbookcs xmlns="https://jordikroon.github.io/docbook-cs/config"
<docbookcs xmlns="https://php.github.io/docbook-cs/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jordikroon.github.io/docbook-cs/config
https://jordikroon.github.io/docbook-cs/config.xsd">
xsi:schemaLocation="https://php.github.io/docbook-cs/config
https://php.github.io/docbook-cs/config.xsd">
<sniffs>
<sniff class="DocbookCS\Sniff\SimparaSniff">
<!-- Optionally add extra block elements that your project uses -->
Expand Down
2 changes: 1 addition & 1 deletion src/Config/ConfigParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

final class ConfigParser
{
private const string NAMESPACE_URI = 'https://jordikroon.github.io/docbook-cs/config';
private const string NAMESPACE_URI = 'https://php.github.io/docbook-cs/config';

/**
* @throws ConfigParserException if the file cannot be read or contains invalid XML.
Expand Down
Loading