-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from OpenConext/feature/sympony-4
Support sf4. Remove RMT releases.
- Loading branch information
Showing
19 changed files
with
308 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
{ | ||
"name": "surfnet/stepup-gssp-bundle", | ||
"license": "Apache-2.0", | ||
"description": "Generic SAML Stepup Provider bundle.", | ||
"type": "symfony-bundle", | ||
"autoload": { | ||
"psr-4": { | ||
"Surfnet\\GsspBundle\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\Surfnet\\GsspBundle\\": "tests/" | ||
}, | ||
"files": [ | ||
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" | ||
] | ||
}, | ||
"require": { | ||
"php": ">=5.5.9", | ||
"ext-openssl": "*", | ||
"beberlei/assert": "^2.7", | ||
"incenteev/composer-parameter-handler": "^2.0", | ||
"sensio/distribution-bundle": "^5.0.19", | ||
"sensio/framework-extra-bundle": "^3.0.2", | ||
"surfnet/stepup-saml-bundle": "^4.0", | ||
"symfony-bundles/bundle-dependency": "^1.0", | ||
"symfony/monolog-bundle": "^3.1.0", | ||
"symfony/polyfill-apcu": "^1.0", | ||
"symfony/swiftmailer-bundle": "^2.3.10", | ||
"twig/twig": "^1.0||^2.0" | ||
}, | ||
"require-dev": { | ||
"behat/behat": "^3.4", | ||
"jakub-onderka/php-parallel-lint": "^0.9.2", | ||
"liip/rmt": "^1.2", | ||
"malukenho/docheader": "^0.1.6", | ||
"mockery/mockery": "^1.0", | ||
"phpmd/phpmd": "^2.6", | ||
"phpunit/phpcov": "^3.1", | ||
"phpunit/phpunit": "^5.7", | ||
"sebastian/phpcpd": "^3.0", | ||
"sensio/generator-bundle": "^3.0", | ||
"squizlabs/php_codesniffer": "^3.1", | ||
"symfony/phpunit-bridge": "^3.3", | ||
"symfony/symfony": "^3.3" | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@lint", | ||
"@static-analysis", | ||
"@phpunit", | ||
"@behat" | ||
], | ||
|
||
"lint": ["@lint-php", "@lint-composer"], | ||
"lint-php": "vendor/bin/parallel-lint src tests", | ||
"lint-composer": "composer validate", | ||
|
||
"static-analysis": ["@license-headers", "@phpmd", "@phpcs", "@phpcpd"], | ||
"license-headers": "vendor/bin/docheader check src/ tests/", | ||
"phpmd": "vendor/bin/docheader check src/ tests/", | ||
"phpcs": [ | ||
"vendor/bin/phpcs --standard=phpcs.xml --report=full --warning-severity=0 ./src", | ||
"vendor/bin/phpcs --standard=phpcs_tests.xml --report=full --warning-severity=0 ./tests" | ||
], | ||
"phpcbf": [ | ||
"vendor/bin/phpcbf --standard=phpcs.xml ./src", | ||
"vendor/bin/phpcbf --standard=phpcs_tests.xml ./tests" | ||
], | ||
"phpcpd": ["vendor/bin/phpcpd ./src", "vendor/bin/phpcpd ./tests"], | ||
|
||
"phpunit": "vendor/bin/phpunit tests", | ||
"behat": "vendor/bin/behat --config behat.yml", | ||
|
||
"coverage": [ | ||
"@phpunit-coverage", | ||
"mkdir -p coverage/reports", | ||
"vendor/bin/phpcov merge coverage/reports --html coverage" | ||
], | ||
"phpunit-coverage": "vendor/bin/phpunit tests --coverage-php coverage/reports/unit.cov" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
"name": "surfnet/stepup-gssp-bundle", | ||
"license": "Apache-2.0", | ||
"description": "Generic SAML Stepup Provider bundle.", | ||
"type": "symfony-bundle", | ||
"autoload": { | ||
"psr-4": { | ||
"Surfnet\\GsspBundle\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\Surfnet\\GsspBundle\\": "tests/" | ||
}, | ||
"files": [ | ||
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" | ||
] | ||
}, | ||
"require": { | ||
"php": ">=7.2", | ||
"ext-openssl": "*", | ||
"beberlei/assert": "^3", | ||
"sensio/framework-extra-bundle": "^5.4", | ||
"symfony/monolog-bundle": "^3.4", | ||
"surfnet/stepup-saml-bundle": "^4.1.7", | ||
"symfony/dependency-injection": ">=2.7,<4 || ~4.3", | ||
"symfony/framework-bundle": ">=2.7,<4 || ~4.3" | ||
}, | ||
"require-dev": { | ||
"behat/behat": "^3.5", | ||
"jakub-onderka/php-parallel-lint": "^1", | ||
"malukenho/docheader": "^0", | ||
"mockery/mockery": "^1", | ||
"phpmd/phpmd": "^2", | ||
"phpunit/phpcov": "^6", | ||
"phpunit/phpunit": "^8", | ||
"sebastian/phpcpd": "^4", | ||
"squizlabs/php_codesniffer": "^3", | ||
"symfony/phpunit-bridge": "~4" | ||
}, | ||
"scripts": { | ||
"test": [ | ||
"@lint", | ||
"@static-analysis", | ||
"@phpunit", | ||
"@behat" | ||
], | ||
"lint": [ | ||
"@lint-php", | ||
"@lint-composer" | ||
], | ||
"lint-php": "vendor/bin/parallel-lint src tests", | ||
"lint-composer": "composer validate", | ||
"static-analysis": [ | ||
"@license-headers", | ||
"@phpmd", | ||
"@phpcs", | ||
"@phpcpd" | ||
], | ||
"license-headers": "vendor/bin/docheader check src/ tests/", | ||
"phpmd": "vendor/bin/docheader check src/ tests/", | ||
"phpcs": [ | ||
"vendor/bin/phpcs --standard=phpcs.xml --report=full --warning-severity=0 ./src", | ||
"vendor/bin/phpcs --standard=phpcs_tests.xml --report=full --warning-severity=0 ./tests" | ||
], | ||
"phpcbf": [ | ||
"vendor/bin/phpcbf --standard=phpcs.xml ./src", | ||
"vendor/bin/phpcbf --standard=phpcs_tests.xml ./tests" | ||
], | ||
"phpcpd": [ | ||
"vendor/bin/phpcpd ./src", | ||
"vendor/bin/phpcpd ./tests" | ||
], | ||
"phpunit": "vendor/bin/phpunit tests", | ||
"behat": "vendor/bin/behat --config behat.yml", | ||
"coverage": [ | ||
"@phpunit-coverage", | ||
"mkdir -p coverage/reports", | ||
"vendor/bin/phpcov merge coverage/reports --html coverage" | ||
], | ||
"phpunit-coverage": "vendor/bin/phpunit tests --coverage-php coverage/reports/unit.cov" | ||
}, | ||
"config": { | ||
"sort-packages": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.