Extended copyright headers to SQL, YAML, and JSON configuration files: - config/docker/init.sql (SQL comment block) - docker-compose.yml (YAML comment) - composer.json and src/composer.json (JSON _comment field) All files validated and tested successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
719 B
JSON
29 lines
719 B
JSON
{
|
|
"_comment": "Web Crawler - Composer Configuration | Copyright (c) 2025 Martin Kiesewetter <mki@kies-media.de> | https://kies-media.de",
|
|
"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"
|
|
}
|
|
}
|