You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
{
|
|
"name": "lcobucci/clock",
|
|
"description": "Yet another clock abstraction",
|
|
"license": "MIT",
|
|
"type": "library",
|
|
"authors": [
|
|
{
|
|
"name": "Luís Cobucci",
|
|
"email": "lcobucci@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "~8.1.0 || ~8.2.0",
|
|
"stella-maris/clock": "^0.1.7"
|
|
},
|
|
"require-dev": {
|
|
"infection/infection": "^0.26",
|
|
"lcobucci/coding-standard": "^9.0",
|
|
"phpstan/extension-installer": "^1.2",
|
|
"phpstan/phpstan": "^1.9.4",
|
|
"phpstan/phpstan-deprecation-rules": "^1.1.1",
|
|
"phpstan/phpstan-phpunit": "^1.3.2",
|
|
"phpstan/phpstan-strict-rules": "^1.4.4",
|
|
"phpunit/phpunit": "^9.5.27"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Lcobucci\\Clock\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Lcobucci\\Clock\\": "test"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true,
|
|
"infection/extension-installer": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"provide": {
|
|
"psr/clock-implementation": "1.0"
|
|
}
|
|
}
|
|
|