Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
:octocat:
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Jul 27, 2023
1 parent 8fcebbb commit 39b3b2a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 22 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"

env:
PHAN_ALLOW_XDEBUG: 0
Expand All @@ -35,7 +36,7 @@ jobs:
- name: "Install PHP"
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
php-version: ${{ matrix.php-version }}
tools: pecl
coverage: none
extensions: ast, curl, json, simplexml, zlib
Expand Down Expand Up @@ -89,6 +90,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: "Checkout"
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@
"ext-simplexml":"*",
"ext-sodium":"*",
"ext-zlib": "*",
"chillerlan/php-httpinterface": "dev-main#427a60fb0949c797e26aedf2bd0e7dc6915d7815",
"chillerlan/php-httpinterface": "dev-main#16739940dec9316caa66bf7fc32f63f05c576ddf",
"chillerlan/php-settings-container":"^2.1.4 || ^3.1",
"psr/http-client":"^1.0",
"psr/http-message": "^1.0",
"psr/http-message": "^1.1",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
Expand Down
43 changes: 24 additions & 19 deletions phpdoc.xml.dist
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
<?xml version="1.0" encoding="UTF-8" ?>
<phpdoc>
<parser>
<target>docs</target>
<encoding>utf8</encoding>
<markers>
<item>TODO</item>
</markers>
</parser>
<transformer>
<target>docs</target>
</transformer>
<files>
<directory>src</directory>
<directory>tests</directory>
</files>
<transformations>
<template name="responsive-twig"/>
</transformations>
</phpdoc>
<phpdocumentor xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://www.phpdoc.org"
xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/phpDocumentor/phpDocumentor/master/data/xsd/phpdoc.xsd"
configVersion="3"
>
<!-- https://docs.phpdoc.org/3.0/guide/references/configuration.html#configuration -->
<paths>
<output>docs</output>
<cache>.build/phpdocs-cache</cache>
</paths>
<version number="3.0.0">
<api>
<source dsn=".">
<path>src</path>
<path>tests</path>
</source>
<extensions>
<extension>php</extension>
</extensions>
</api>
</version>
<setting name="template.color" value="deep-purple"/>
<template name="default" />
</phpdocumentor>

0 comments on commit 39b3b2a

Please sign in to comment.