friendship ended with social-app. php is my new best friend
1{ 2 "$schema": "https://getcomposer.org/schema.json", 3 "name": "chillerlan/php-standard-utilities", 4 "description": "A collection of reusable multi-purpose functions for PHP libraries.", 5 "license": "MIT", 6 "type": "library", 7 "keywords": ["functions", "utilities"], 8 "authors": [ 9 { 10 "name": "smiley", 11 "email": "smiley@chillerlan.net", 12 "homepage": "https://github.com/codemasher" 13 }, 14 { 15 "name": "Contributors", 16 "homepage":"https://github.com/chillerlan/php-standard-utilities/graphs/contributors" 17 } 18 ], 19 "funding": [ 20 { 21 "type": "Ko-Fi", 22 "url": "https://ko-fi.com/codemasher" 23 } 24 ], 25 "homepage": "https://github.com/chillerlan/php-standard-utilities", 26 "support": { 27 "issues": "https://github.com/chillerlan/php-standard-utilities/issues", 28 "source": "https://github.com/chillerlan/php-standard-utilities" 29 }, 30 "minimum-stability": "stable", 31 "prefer-stable": true, 32 "require": { 33 "php": "^8.1", 34 "ext-json": "*", 35 "ext-mbstring": "*", 36 "ext-sodium": "*" 37 }, 38 "require-dev": { 39 "phpmd/phpmd": "^2.15", 40 "phpstan/phpstan": "^2.1.17", 41 "phpstan/phpstan-deprecation-rules": "^2.0", 42 "phpunit/phpunit": "^10.5", 43 "slevomat/coding-standard": "^8.19", 44 "squizlabs/php_codesniffer": "^3.13" 45 }, 46 "suggest": { 47 }, 48 "autoload": { 49 "psr-4": { 50 "chillerlan\\Utilities\\": "src" 51 } 52 }, 53 "autoload-dev": { 54 "psr-4": { 55 "chillerlan\\UtilitiesTest\\": "tests" 56 } 57 }, 58 "scripts": { 59 "phpcs": "@php vendor/bin/phpcs", 60 "phpstan": "@php vendor/bin/phpstan", 61 "phpstan-baseline": "@php vendor/bin/phpstan --generate-baseline", 62 "phpunit": "@php vendor/bin/phpunit" 63 }, 64 "config": { 65 "lock": false, 66 "sort-packages": true, 67 "platform-check": true, 68 "allow-plugins": { 69 "dealerdirect/phpcodesniffer-composer-installer": true 70 } 71 } 72}