49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "lcobucci/clock",
|
|
"description": "Yet another clock abstraction",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Luís Cobucci",
|
|
"email": "lcobucci@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "~8.2.0 || ~8.3.0",
|
|
"psr/clock": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"infection/infection": "^0.27",
|
|
"lcobucci/coding-standard": "^11.0.0",
|
|
"phpstan/extension-installer": "^1.3.1",
|
|
"phpstan/phpstan": "^1.10.25",
|
|
"phpstan/phpstan-deprecation-rules": "^1.1.3",
|
|
"phpstan/phpstan-phpunit": "^1.3.13",
|
|
"phpstan/phpstan-strict-rules": "^1.5.1",
|
|
"phpunit/phpunit": "^10.2.3"
|
|
},
|
|
"provide": {
|
|
"psr/clock-implementation": "1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Lcobucci\\Clock\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Lcobucci\\Clock\\": "test"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
"infection/extension-installer": true,
|
|
"phpstan/extension-installer": true
|
|
},
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
}
|
|
}
|