Skip to content

Commit 3f98e8f

Browse files
authored
Add Contributing.md (zircote#1412)
1 parent a060ea2 commit 3f98e8f

File tree

4 files changed

+99
-62
lines changed

4 files changed

+99
-62
lines changed

CONTRIBUTING.md

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
## Contributing
2+
3+
Contributions of any kind are welcome.
4+
5+
Feel free to submit [Github Issues](https://github.com/zircote/swagger-php/issues)
6+
or [pull requests](https://github.com/zircote/swagger-php/pulls).
7+
8+
9+
## Quick Guide
10+
11+
The documentation site has [some details](https://zircote.github.io/swagger-php/guide/under-the-hood.html#documentation) about internals.
12+
13+
### How-To
14+
15+
* [Fork](https://help.github.com/articles/fork-a-repo/) the repo.
16+
* [Checkout](https://git-scm.com/docs/git-checkout) the branch you want to make changes on.
17+
* Typically, this will be `master`. Note that most of the time, `master` represents the next release of swagger-php, so Pull Requests that break backwards compatibility might be postponed.
18+
* Install dependencies: `composer install`.
19+
* Create a new branch, e.g. `feature-foo` or `bugfix-bar`.
20+
* Make changes.
21+
* If you are adding functionality or fixing a bug - add a test!
22+
23+
Prefer adding new test cases over modifying existing ones.
24+
* Update documentation: `composer docs:gen`.
25+
* Run static analysis using PHPStan/Psalm: `composer analyse`.
26+
* Check if tests pass: `composer test`.
27+
* Fix code style issues: `composer cs`.
28+
29+
30+
## Documentation
31+
32+
The documentation website is build from the [docs](docs/) folder with [vitepress](https://vitepress.vuejs.org).
33+
This process involves converting the existing markdown (`.md`) files into static HTML pages and publishing them.
34+
35+
Some reference content is based on the existing code, so changes to annotations, attributes and processors will require to re-generate those markdown files: `composer docs:gen`.
36+
37+
The actual published content is managed in the [gh-pages](https://github.com/zircote/swagger-php/tree/gh-pages) branch and driven by a [publish action](https://github.com/zircote/swagger-php/actions/workflows/gh-pages.yml).
38+
39+
40+
## Useful commands
41+
42+
### To run both unit tests and linting execute
43+
```shell
44+
composer test
45+
```
46+
47+
### To run static-analysis execute
48+
```shell
49+
composer analyse
50+
```
51+
52+
### Running unit tests only
53+
```shell
54+
./bin/phpunit
55+
```
56+
57+
### Regenerate reference markup docs
58+
```shell
59+
composer docs:gen
60+
```
61+
62+
### Running linting only
63+
```shell
64+
composer lint
65+
```
66+
67+
### To make `php-cs-fixer` fix linting errors
68+
```shell
69+
composer cs
70+
```
71+
72+
### Run dev server for local development of `gh-pages`
73+
```shell
74+
composer docs:dev
75+
```
76+
77+
78+
## Project's Standards
79+
80+
* [PSR-1: Basic Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md)
81+
* [PSR-2: Coding Style Guide](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
82+
* [PSR-4: Autoloading Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md)
83+
* [PSR-5: PHPDoc (draft)](https://github.com/phpDocumentor/fig-standards/blob/master/proposed/phpdoc.md)

README.md

+4-50
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Programmatically, the method `Generator::setVersion()` can be used to change the
3131

3232
## Installation (with [Composer](https://getcomposer.org))
3333

34-
```bash
34+
```shell
3535
composer require zircote/swagger-php
3636
```
3737

3838
For cli usage from anywhere install swagger-php globally and make sure to place the `~/.composer/vendor/bin` directory in your PATH so the `openapi` executable can be located by your system.
3939

40-
```bash
40+
```shell
4141
composer global require zircote/swagger-php
4242
```
4343

@@ -77,7 +77,7 @@ Documentation of how to use the `Generator` class can be found in the [Generator
7777

7878
The `openapi` command line interface can be used to generate the documentation to a static yaml/json file.
7979

80-
```bash
80+
```shell
8181
./vendor/bin/openapi --help
8282
```
8383
Starting with version 4 the default analyser used on the command line is the new `ReflectionAnalyser`.
@@ -98,13 +98,7 @@ $openapi = $serializer->deserialize($jsonString, 'OpenApi\Annotations\OpenApi');
9898
echo $openapi->toJson();
9999
```
100100

101-
### Usage from [docker](https://docker.com)
102-
103-
Generate the swagger documentation to a static json file.
104-
105-
```
106-
docker run -v "$PWD":/app -it tico/swagger-php --help
107-
```
101+
## [Contributing](CONTRIBUTING.md)
108102

109103
## More on OpenApi & Swagger
110104

@@ -113,43 +107,3 @@ docker run -v "$PWD":/app -it tico/swagger-php --help
113107
- [OpenApi Documentation](https://swagger.io/docs/)
114108
- [OpenApi Specification](http://swagger.io/specification/)
115109
- [Related projects](docs/related-projects.md)
116-
117-
## Contributing
118-
119-
Feel free to submit [Github Issues](https://github.com/zircote/swagger-php/issues)
120-
or pull requests.
121-
122-
The documentation website is build from the [docs](docs/) folder with [vitepress](https://vitepress.vuejs.org).
123-
124-
Make sure pull requests pass [PHPUnit](https://phpunit.de/)
125-
and [PHP-CS-Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) (PSR-2) tests.
126-
127-
### To run both unit tests and linting execute:
128-
```bash
129-
composer test
130-
```
131-
132-
### To run static-analysis execute:
133-
```bash
134-
composer analyse
135-
```
136-
137-
### Running unit tests only:
138-
```bash
139-
./bin/phpunit
140-
```
141-
142-
### Regenerate reference markup docs
143-
```bash
144-
composer docs:gen
145-
```
146-
147-
### Running linting only:
148-
```bash
149-
composer lint
150-
```
151-
152-
### To make `php-cs-fixer` fix linting errors:
153-
```bash
154-
composer cs
155-
```

composer.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"testall": "Run all tests (test + testlegacy)",
8383
"analyse": "Run static analysis (phpstan/psalm)",
8484
"spectral": "Run spectral lint over all .yaml files in the Examples folder",
85-
"docs:refgen": "Rebuild the annotations/attributes reference markup files",
85+
"docs:gen": "Rebuild reference documentation",
8686
"docs:dev": "Run dev server for local development of gh-pages",
8787
"docs:build": "Re-build static gh-pages"
8888
},
@@ -103,11 +103,9 @@
103103
"export XDEBUG_MODE=off && psalm"
104104
],
105105
"spectral": "for ff in `find Examples -name '*.yaml'`; do spectral lint $ff; done",
106-
"docs:refgen": "php tools/refgen.php",
107-
"docs:procgen": "php tools/procgen.php",
108106
"docs:gen": [
109-
"@docs:refgen",
110-
"@docs:procgen"
107+
"@php tools/refgen.php",
108+
"@php tools/procgen.php"
111109
],
112110
"docs:dev": "cd docs && npm run dev",
113111
"docs:build": [

tools/src/Docs/ProcGenerator.php

+9-7
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,15 @@ public function getProcessorsDetails(): array
7171
if (!in_array($class, $defaultProcessors)) {
7272
$rc = new \ReflectionClass($class);
7373

74-
$processors[] = [
75-
'class' => $rc->getName(),
76-
'name' => $rc->getShortName(),
77-
'default' => false,
78-
'options' => $this->getOptionsDetails($rc),
79-
'phpdoc' => $this->extractDocumentation($rc->getDocComment()),
80-
];
74+
if (!$rc->isInterface()) {
75+
$processors[] = [
76+
'class' => $rc->getName(),
77+
'name' => $rc->getShortName(),
78+
'default' => false,
79+
'options' => $this->getOptionsDetails($rc),
80+
'phpdoc' => $this->extractDocumentation($rc->getDocComment()),
81+
];
82+
}
8183
}
8284
}
8385

0 commit comments

Comments
 (0)