-
- Downloads
Inital bundle commit
Showing
- .gitignore 6 additions, 0 deletions.gitignore
- .gitlab-ci.yml 73 additions, 0 deletions.gitlab-ci.yml
- .php-cs-fixer.dist.php 25 additions, 0 deletions.php-cs-fixer.dist.php
- .renovaterc.json 21 additions, 0 deletions.renovaterc.json
- LICENSE 661 additions, 0 deletionsLICENSE
- README.md 126 additions, 57 deletionsREADME.md
- composer.json 66 additions, 0 deletionscomposer.json
- composer.lock 10230 additions, 0 deletionscomposer.lock
- phpstan.neon 9 additions, 0 deletionsphpstan.neon
- phpunit.xml.dist 25 additions, 0 deletionsphpunit.xml.dist
- psalm.xml 22 additions, 0 deletionspsalm.xml
- src/DbpRelayBlobConnectorLocalBundle.php 15 additions, 0 deletionssrc/DbpRelayBlobConnectorLocalBundle.php
- src/DependencyInjection/Configuration.php 18 additions, 0 deletionssrc/DependencyInjection/Configuration.php
- src/DependencyInjection/DbpRelayBlobConnectorLocalExtension.php 27 additions, 0 deletions...pendencyInjection/DbpRelayBlobConnectorLocalExtension.php
- src/Entity/Entity.php 98 additions, 0 deletionssrc/Entity/Entity.php
- src/Resources/config/services.yaml 1 addition, 0 deletionssrc/Resources/config/services.yaml
- tests/Kernel.php 52 additions, 0 deletionstests/Kernel.php
- tests/Test.php 15 additions, 0 deletionstests/Test.php
- tests/bootstrap.php 5 additions, 0 deletionstests/bootstrap.php
.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.
composer.json
0 → 100644
{ | ||
"name": "dbp/relay-blob-connector-local-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.34", | ||
"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\\BlobConnectorLocalBundle\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Dbp\\Relay\\BlobConnectorLocalBundle\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.3" | ||
} | ||
}, | ||
"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/DbpRelayBlobConnectorLocalBundle.php
0 → 100644
src/DependencyInjection/Configuration.php
0 → 100644
src/Entity/Entity.php
0 → 100644
src/Resources/config/services.yaml
0 → 100644
tests/Kernel.php
0 → 100644
tests/Test.php
0 → 100644
tests/bootstrap.php
0 → 100644
Please register or sign in to comment