PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Andre Polykanine A.K.A. Menelion Elensúlë   Oire Base64   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Oire Base64
URL safe encoding and decoding of data with Base64
Author: By
Last change: Remove PhpStan support
Add Psalm support (#22)

* Add Psalm support

* Fix code styling

* Try fixing Psalm

Co-authored-by: Menelion <[email protected]>
Add PHPStan support

* Add PHPStan support

* Update year
Add gitattributes file

Prepare for version 2

* Update dependencies
* Standardize namespaces
* Improve Readme
Downgrade PHPUnit to version 7 for PHP 7.1 compatibility
Fix composer.json
Prepare for version 1.2

* Add proper exceptions;
* Normalized code style;
* Standardized tests.
Update phpunit/phpunit requirement from ^6.0 to ^6.0 || ^7.0

Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/7.5.18/ChangeLog-7.5.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/6.0.0...7.5.18)

Signed-off-by: dependabot-preview[bot] <[email protected]>
Date: 10 days ago
Size: 1,425 bytes
 

Contents

Class file image Download
{ "name": "oire/base64", "description": "Url-and filename-safe Base64 handling.", "type": "library", "repositories": [ { "type": "vcs", "url": "https://github.com/Oire/php-code-style" } ], "require": { "php": ">=7.3" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.16", "oire/php-code-style": "dev-master", "phpunit/phpunit": "^9", "psalm/plugin-phpunit": "^0.15.0", "vimeo/psalm": "^4.4" }, "license": "MIT", "authors": [ { "name": "Andre Polykanine also known as Menelion Elensúlë", "email": "[email protected]", "homepage": "https://github.com/Menelion", "role": "developer" } ], "support": { "issues": "https://github.com/Oire/Base64/issues", "source": "https://github.com/Oire/Base64" }, "autoload": { "psr-4": { "Oire\\Base64\\": "src" } }, "autoload-dev": { "psr-4": { "Oire\\Base64\\Tests\\": "tests" } }, "config": { "sort-packages": true, "preferred-install": { "*": "dist" } }, "scripts": { "tests": "vendor/bin/phpunit", "coding-style": "vendor/bin/php-cs-fixer fix --dry-run --diff --config=.php_cs.dist", "clear": "rm -rf vendor/" } }