Skip to content

Commit

Permalink
chore: add branch alias
Browse files Browse the repository at this point in the history
  • Loading branch information
sitepark-veltrup committed May 22, 2024
1 parent 2a6600c commit 026f5cf
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 44 deletions.
72 changes: 38 additions & 34 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,21 @@
"description": "Symfony bundle to secure atoolo applications",
"license": "MIT",
"type": "symfony-bundle",
"authors": [{
"name": "veltrup",
"email": "veltrup@sitepark.com"
}],
"autoload": {
"psr-4": {
"Atoolo\\Security\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atoolo\\Security\\Test\\": "test/"
"authors": [
{
"name": "veltrup",
"email": "veltrup@sitepark.com"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
],
"require": {
"php": ">=8.1 <8.4.0",
"lexik/jwt-authentication-bundle": "^2.13",
"symfony/config": "^6.3 || ^7.0",
"symfony/dependency-injection": "^6.3 || ^7.0",
"symfony/http-kernel": "^6.3 || ^7.0",
"symfony/http-foundation": "^6.3 || ^7.0",
"symfony/yaml": "^6.3 || ^7.0",
"symfony/http-kernel": "^6.3 || ^7.0",
"symfony/security-core": "^6.3 || ^7.0",
"lexik/jwt-authentication-bundle": "^2.13"
"symfony/yaml": "^6.3 || ^7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
Expand All @@ -37,8 +27,35 @@
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Atoolo\\Security\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atoolo\\Security\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"scripts": {

"post-install-cmd": "phive --no-progress install --force-accept-unsigned --trust-gpg-keys C00543248C87FB13,4AA394086372C20A,CF1A108D0E7AE720,51C67305FFC2E5C0",
"analyse": [
"@analyse:phplint",
Expand All @@ -63,20 +80,7 @@
"test": [
"@test:phpunit"
],
"test:phpunit": "./tools/phpunit.phar -c phpunit.xml --coverage-text",
"test:infection": "vendor/bin/infection --threads=8 --no-progress --only-covered -s || exit 0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": {
"test:infection": "vendor/bin/infection --threads=8 --no-progress --only-covered -s || exit 0",
"test:phpunit": "./tools/phpunit.phar -c phpunit.xml --coverage-text"
}
}
21 changes: 11 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 026f5cf

Please sign in to comment.