-
- Downloads
initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 7 additions, 0 deletions.gitignore
- .gitlab-ci.yml 74 additions, 0 deletions.gitlab-ci.yml
- .php-cs-fixer.dist.php 26 additions, 0 deletions.php-cs-fixer.dist.php
- .renovaterc.json 22 additions, 0 deletions.renovaterc.json
- LICENSE 0 additions, 0 deletionsLICENSE
- README.md 161 additions, 0 deletionsREADME.md
- composer.json 70 additions, 0 deletionscomposer.json
- composer.lock 0 additions, 0 deletionscomposer.lock
- phpstan.neon 10 additions, 0 deletionsphpstan.neon
- phpunit.xml.dist 25 additions, 0 deletionsphpunit.xml.dist
- psalm.xml 22 additions, 0 deletionspsalm.xml
- src/DataPersister/ProxyDataPersister.php 46 additions, 0 deletionssrc/DataPersister/ProxyDataPersister.php
- src/DataProvider/ProxyDataCollectionDataProvider.php 25 additions, 0 deletionssrc/DataProvider/ProxyDataCollectionDataProvider.php
- src/DataProvider/ProxyDataItemDataProvider.php 25 additions, 0 deletionssrc/DataProvider/ProxyDataItemDataProvider.php
- src/DbpRelayProxyBundle.php 15 additions, 0 deletionssrc/DbpRelayProxyBundle.php
- src/DependencyInjection/Configuration.php 18 additions, 0 deletionssrc/DependencyInjection/Configuration.php
- src/DependencyInjection/DbpRelayProxyExtension.php 27 additions, 0 deletionssrc/DependencyInjection/DbpRelayProxyExtension.php
- src/Entity/ProxyData.php 182 additions, 0 deletionssrc/Entity/ProxyData.php
- src/Event/ProxyDataEvent.php 26 additions, 0 deletionssrc/Event/ProxyDataEvent.php
- src/Resources/config/services.yaml 10 additions, 0 deletionssrc/Resources/config/services.yaml
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.php-cs-fixer.dist.php
0 → 100644
.renovaterc.json
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "dbp/relay-proxy-bundle", | ||
"description": "A template bundle for the Relay API gateway", | ||
"type": "symfony-bundle", | ||
"license": "AGPL-3.0-or-later", | ||
"require": { | ||
"php": ">=7.3", | ||
"ext-json": "*", | ||
"api-platform/core": "^2.6", | ||
"dbp/relay-core-bundle": "^0.1.35", | ||
"symfony/event-dispatcher": "^5.4", | ||
"symfony/framework-bundle": "^5.4" | ||
}, | ||
"require-dev": { | ||
"friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^1.0.0", | ||
"phpstan/phpstan-phpunit": "^1.0.0", | ||
"phpstan/phpstan-symfony": "^1.2", | ||
"phpunit/phpunit": "^9", | ||
"symfony/browser-kit": "^5.4", | ||
"symfony/http-client": "^5.4", | ||
"symfony/monolog-bundle": "^3.7", | ||
"symfony/phpunit-bridge": "^5.4", | ||
"vimeo/psalm": "^4.2.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Dbp\\Relay\\ProxyBundle\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Dbp\\Relay\\ProxyBundle\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.3" | ||
}, | ||
"allow-plugins": { | ||
"composer/package-versions-deprecated": true | ||
} | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@php vendor/bin/phpunit" | ||
], | ||
"phpstan": [ | ||
"@php vendor/bin/phpstan analyze --ansi" | ||
], | ||
"psalm": [ | ||
"@php vendor/bin/psalm" | ||
], | ||
"lint": [ | ||
"@composer run cs", | ||
"@composer run phpstan", | ||
"@composer run psalm" | ||
], | ||
"cs-fix": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix" | ||
], | ||
"cs": [ | ||
"@php vendor/bin/php-cs-fixer --ansi fix --dry-run --diff" | ||
], | ||
"coverage": [ | ||
"@php -dxdebug.mode=coverage vendor/bin/phpunit --coverage-html _coverage" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This diff is collapsed.
phpstan.neon
0 → 100644
phpunit.xml.dist
0 → 100644
psalm.xml
0 → 100644
src/DataPersister/ProxyDataPersister.php
0 → 100644
src/DbpRelayProxyBundle.php
0 → 100644
src/DependencyInjection/Configuration.php
0 → 100644
src/Entity/ProxyData.php
0 → 100644
src/Event/ProxyDataEvent.php
0 → 100644
src/Resources/config/services.yaml
0 → 100644
Please register or sign in to comment