- Add PHPUnit 11.0 testing framework - Create unit tests for Database and Crawler classes - Create integration tests for Crawler - Add phpunit.xml configuration - Change UI background color to rose - All 9 tests passing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
579 B
JSON
28 lines
579 B
JSON
{
|
|
"name": "web-crawler/app",
|
|
"description": "Web Crawler Application with Parallel Processing",
|
|
"type": "project",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"guzzlehttp/guzzle": "^7.8",
|
|
"symfony/dom-crawler": "^7.0",
|
|
"symfony/css-selector": "^7.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^11.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "classes/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
}
|
|
}
|