html-object-strings/composer.json

38 lines
852 B
JSON
Raw Normal View History

2018-08-23 18:49:17 +00:00
{
"name": "byjoby/html-object-strings",
2022-11-30 14:55:35 +00:00
"description": "Abstraction layer for constructing arbitrary HTML tags and documents in PHP",
2018-08-23 18:49:17 +00:00
"type": "library",
2018-08-24 03:53:26 +00:00
"require": {
2022-12-21 18:48:59 +00:00
"php": ">=8.1",
2022-11-30 14:55:35 +00:00
"myclabs/deep-copy": "^1"
2018-08-24 03:53:26 +00:00
},
2018-08-23 18:49:17 +00:00
"license": "MIT",
2022-12-21 18:48:59 +00:00
"authors": [
{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}
],
2018-08-23 18:49:17 +00:00
"minimum-stability": "dev",
2018-08-23 18:54:56 +00:00
"prefer-stable": true,
2018-08-23 18:49:17 +00:00
"autoload": {
"psr-4": {
2022-11-30 14:55:35 +00:00
"ByJoby\\HTML\\": "src/"
2018-08-23 18:49:17 +00:00
}
},
"autoload-dev": {
"psr-4": {
2022-11-30 14:55:35 +00:00
"ByJoby\\HTML\\": "tests/"
2018-08-23 18:49:17 +00:00
}
},
"scripts": {
2022-11-30 14:55:35 +00:00
"test": "phpunit",
"stan": "phpstan"
2018-08-23 18:49:17 +00:00
},
"require-dev": {
"mustangostang/spyc": "^0.6.3",
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11"
2018-08-23 18:49:17 +00:00
}
}