OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
vendor
/
zircote
/
swagger-php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:33:51 AM
rwxr-xr-x
📄
.editorconfig
219 bytes
08/07/2024 04:33:51 AM
rw-r--r--
📁
.git
-
08/07/2024 04:34:48 AM
rwxr-xr-x
📄
.gitattributes
584 bytes
08/07/2024 04:33:51 AM
rw-r--r--
📁
.github
-
08/07/2024 04:34:23 AM
rwxr-xr-x
📄
.gitignore
195 bytes
08/07/2024 04:33:51 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
3.57 KB
08/07/2024 04:33:51 AM
rw-r--r--
📄
.spectral.yaml
27 bytes
08/07/2024 04:33:51 AM
rw-r--r--
📄
CONTRIBUTING.md
2.74 KB
08/07/2024 04:33:51 AM
rw-r--r--
📄
Changelog.md
108 bytes
08/07/2024 04:33:51 AM
rw-r--r--
📁
Examples
-
08/07/2024 04:34:50 AM
rwxr-xr-x
📄
LICENSE
11.09 KB
08/07/2024 04:33:52 AM
rw-r--r--
📄
NOTICE
51 bytes
08/07/2024 04:33:52 AM
rw-r--r--
📄
README.md
4.41 KB
08/07/2024 04:33:52 AM
rw-r--r--
📁
bin
-
08/07/2024 04:34:01 AM
rwxr-xr-x
📄
composer.json
3.94 KB
08/07/2024 04:33:51 AM
rw-r--r--
📁
docs
-
08/07/2024 04:34:25 AM
rwxr-xr-x
📄
phpstan-baseline.neon
4.95 KB
08/07/2024 04:33:52 AM
rw-r--r--
📄
phpstan.neon
389 bytes
08/07/2024 04:33:52 AM
rw-r--r--
📄
phpunit.xml.dist
687 bytes
08/07/2024 04:33:52 AM
rw-r--r--
📄
psalm-baseline.xml
261 bytes
08/07/2024 04:33:52 AM
rw-r--r--
📄
psalm.xml
879 bytes
08/07/2024 04:33:52 AM
rw-r--r--
📁
src
-
08/07/2024 04:34:30 AM
rwxr-xr-x
📁
tests
-
08/07/2024 04:34:33 AM
rwxr-xr-x
📁
tools
-
08/07/2024 04:34:56 AM
rwxr-xr-x
Editing: composer.json
Close
{ "name": "zircote/swagger-php", "type": "library", "license": "Apache-2.0", "bin": [ "bin/openapi" ], "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations", "keywords": [ "json", "rest", "api", "service discovery" ], "homepage": "https://github.com/zircote/swagger-php/", "authors": [ { "name": "Robert Allen", "email": "zircote@gmail.com" }, { "name": "Bob Fanger", "email": "bfanger@gmail.com", "homepage": "https://bfanger.nl" }, { "name": "Martin Rademacher", "email": "mano@radebatz.net", "homepage": "https://radebatz.net" } ], "config": { "bin-dir": "bin", "optimize-autoloader": true, "sort-packages": true, "allow-plugins": { "composer/package-versions-deprecated": true } }, "minimum-stability": "stable", "extra": { "branch-alias": { "dev-master": "4.x-dev" } }, "require": { "php": ">=7.2", "ext-json": "*", "psr/log": "^1.1 || ^2.0 || ^3.0", "symfony/deprecation-contracts": "^2 || ^3", "symfony/finder": ">=2.2", "symfony/yaml": ">=3.3" }, "autoload": { "psr-4": { "OpenApi\\": "src" } }, "require-dev": { "composer/package-versions-deprecated": "^1.11", "doctrine/annotations": "^1.7 || ^2.0", "friendsofphp/php-cs-fixer": "^2.17 || ^3.47.1", "phpstan/phpstan": "^1.6", "phpunit/phpunit": ">=8", "vimeo/psalm": "^4.23" }, "suggest": { "doctrine/annotations": "^1.7 || ^2.0" }, "autoload-dev": { "exclude-from-classmap": [ "/tests/Fixtures" ], "psr-4": { "OpenApi\\Tools\\": "tools/src/", "OpenApi\\Tests\\": "tests/", "AnotherNamespace\\": "tests/Fixtures/AnotherNamespace" } }, "scripts-descriptions": { "cs": "Fix all codestyle issues", "lint": "Test codestyle", "test": "Run all non-legacy and codestyle tests", "testlegacy": "Run tests using the legacy TokenAnalyser", "testall": "Run all tests (test + testlegacy)", "analyse": "Run static analysis (phpstan/psalm)", "spectral-examples": "Run spectral lint over all .yaml files in the Examples folder", "spectral-scratch": "Run spectral lint over all .yaml files in the tests/Fixtures/Scratch folder", "spectral": "Run all spectral tests", "docs:gen": "Rebuild reference documentation", "docs:dev": "Run dev server for local development of gh-pages", "docs:build": "Re-build static gh-pages" }, "scripts": { "cs": "export XDEBUG_MODE=off && php-cs-fixer fix --allow-risky=yes", "lint": "@cs --dry-run", "test": [ "export XDEBUG_MODE=off && phpunit", "@lint" ], "testlegacy": "export XDEBUG_MODE=off && export PHPUNIT_ANALYSER=legacy && phpunit", "testall": [ "@test", "@testlegacy" ], "analyse": [ "export XDEBUG_MODE=off && phpstan analyse --memory-limit=2G", "export XDEBUG_MODE=off && psalm" ], "spectral-examples": "for ff in `find Examples -name '*.yaml'`; do spectral lint $ff; done", "spectral-scratch": "for ff in `find tests/Fixtures/Scratch -name '*.yaml'`; do spectral lint $ff; done", "spectral": [ "@spectral-examples", "@spectral-scratch" ], "docs:gen": [ "@php tools/refgen.php", "@php tools/procgen.php" ], "docs:dev": "cd docs && npm run dev", "docs:build": [ "@docs:gen", "cd docs && npm run build" ] } }