- composer.json: aneurin/php-todo-list -> aneurin/php-project-manager - web/package.json (+ lockfile): "web" -> "project-manager-web" - docker-compose.yml image tags: php-todo-list -> php-project-manager, php-todo-web -> php-project-manager-web The directory, the Compose project prefix (derived from the directory name), and the git remote still carry the old name and are left as-is. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
39 lines
899 B
JSON
39 lines
899 B
JSON
{
|
|
"name": "aneurin/php-project-manager",
|
|
"description": "Simple project-management REST API + SPA (PHP, SQLite)",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-pdo": "*",
|
|
"ext-pdo_sqlite": "*",
|
|
"firebase/php-jwt": "^7.0",
|
|
"phpmailer/phpmailer": "^7.1",
|
|
"slim/psr7": "^1.6",
|
|
"slim/slim": "^4.12",
|
|
"vlucas/phpdotenv": "^5.6"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"migrate": "php bin/migrate.php",
|
|
"serve": "php -S localhost:8080 -t public"
|
|
}
|
|
}
|