utility.collection/composer.json

23 lines
789 B
JSON
Raw Normal View History

2025-04-09 02:18:57 +01:00
{
"name": "loomlabs/utility.collection",
2025-04-10 04:02:47 +01:00
"description": "An object-oriented way to work with arrays.",
2025-04-09 02:20:11 +01:00
"autoload": {
"psr-4": {
"Loom\\Utility\\Collection\\": "src/"
2025-04-09 02:20:11 +01:00
}
},
"autoload-dev": {
"psr-4": {
"Loom\\Utility\\Collection\\Tests\\": "tests/"
2025-04-09 02:20:11 +01:00
}
},
2025-04-10 04:11:14 +01:00
"scripts": {
"test": "php -d xdebug.mode=coverage ./vendor/bin/phpunit --testdox --colors=always --coverage-html coverage --coverage-clover coverage/coverage.xml --testdox-html coverage/testdox.html && npx badger --phpunit ./coverage/coverage.xml && npx badger --version ./composer.json && npx badger --license ./composer.json"
},
2025-04-10 03:44:57 +01:00
"version": "1.0.1",
2025-04-09 02:20:11 +01:00
"license": "MIT",
"require-dev": {
"phpunit/phpunit": "^12.1"
}
}