Skip to content

Commit

Permalink
add composer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Eelen committed Mar 21, 2024
1 parent d42ed31 commit e8552c4
Show file tree
Hide file tree
Showing 2 changed files with 1,279 additions and 839 deletions.
148 changes: 78 additions & 70 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,74 +1,82 @@
{
"name": "cultuurnet/jwt-provider",
"description": "Silex application that provides JSON Web Tokens",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Publiq vzw",
"email": "info@publiq.be"
}
],
"require": {
"php": "^7.4",
"aura/session": "^2.1",
"filp/whoops": "^2.5",
"guzzlehttp/psr7": "^1.3",
"hassankhan/config": "^2.1",
"league/container": "^3.3",
"league/route": "^4.3",
"monolog/monolog": "^1.11",
"slim/psr7": "^1.4",
"symfony/yaml": "^4.3",
"auth0/auth0-php": "^5.7",
"beberlei/assert": "^3.2",
"cultuurnet/culturefeed-php": "^1.10",
"cultuurnet/udb3-api-guard": "^v4.0.0",
"php-http/message-factory": "^1.1",
"laminas/laminas-httphandlerrunner": "^2.2",
"sentry/sdk": "^4.0"
},
"require-dev": {
"publiq/php-cs-fixer-config": "^1.3",
"jangregor/phpstan-prophecy": "^1.0",
"phpunit/phpunit": "^9.6",
"phpspec/prophecy-phpunit": "^2.2"
},
"autoload": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": ["app/", "src/"]
}
},
"autoload-dev": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"config": {
"preferred-install": {
"cultuurnet/*": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
"name": "cultuurnet/jwt-provider",
"description": "Silex application that provides JSON Web Tokens",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Publiq vzw",
"email": "info@publiq.be"
}
],
"require": {
"php": "^7.4 || ^8.0",
"aura/session": "^2.1",
"filp/whoops": "^2.5",
"guzzlehttp/psr7": "^1.3",
"league/container": "^3.3",
"league/route": "^4.3",
"monolog/monolog": "^1.11",
"symfony/yaml": "^4.3",
"beberlei/assert": "^3.2",
"cultuurnet/culturefeed-php": "^1.10",
"cultuurnet/udb3-api-guard": "^v4.0.0",
"php-http/message-factory": "^1.1",
"laminas/laminas-httphandlerrunner": "^2.2",
"sentry/sdk": "^4.0",
"auth0/auth0-php": "^8.3",
"symfony/http-client": "^5.4",
"hassankhan/config": "^3.1",
"http-interop/http-factory-guzzle": "^1.2",
"slim/psr7": "^1.6",
"ext-json": "*",
"symfony/event-dispatcher": "^5.4",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"publiq/php-cs-fixer-config": "^1.3",
"jangregor/phpstan-prophecy": "^1.0",
"phpunit/phpunit": "^9.6",
"phpspec/prophecy-phpunit": "^2.2"
},
"autoload": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": [
"app/",
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"config": {
"preferred-install": {
"cultuurnet/*": "source",
"*": "dist"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"ci": [
"composer cs",
"composer phpstan",
"composer test"
]
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"ci": [
"composer cs",
"composer phpstan",
"composer test"
]
}
}
Loading

0 comments on commit e8552c4

Please sign in to comment.