{
"name": "tomloprod/memoize",
"description": "Memoize is a lightweight PHP library designed to handle memoization with ease.",
"type": "library",
"keywords": [
"utility",
"memoization"
],
"license": "MIT",
"authors": [
{
"name": "Tomás López",
"email": " [email protected]"
}
],
"require": {
"php": "^8.2.0"
},
"require-dev": {
"laravel/pint": "^1.22.1",
"pestphp/pest": "^3.8.2",
"pestphp/pest-plugin-type-coverage": "^3.5.0",
"rector/rector": "^1.0.4"
},
"autoload": {
"psr-4": {
"Tomloprod\\Memoize\\": "src/"
},
"files": [
"src/Support/MemoizeAlias.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint",
"refactor": "rector",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse",
"test:type-coverage": "pest --type-coverage --min=100",
"test:unit": "pest --coverage --min=100",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
}
}
|