Rename package to project-manager
- 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>
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "aneurin/php-todo-list",
|
"name": "aneurin/php-project-manager",
|
||||||
"description": "Simple project-management REST API + SPA (PHP, SQLite)",
|
"description": "Simple project-management REST API + SPA (PHP, SQLite)",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
build: .
|
build: .
|
||||||
image: php-todo-list
|
image: php-project-manager
|
||||||
ports:
|
ports:
|
||||||
- "8080:80"
|
- "8080:80"
|
||||||
environment:
|
environment:
|
||||||
@@ -44,7 +44,7 @@ services:
|
|||||||
# Without the profile, `docker compose up -d` runs the API alone.
|
# Without the profile, `docker compose up -d` runs the API alone.
|
||||||
web:
|
web:
|
||||||
build: ./web
|
build: ./web
|
||||||
image: php-todo-web
|
image: php-project-manager-web
|
||||||
profiles: ["frontend"]
|
profiles: ["frontend"]
|
||||||
ports:
|
ports:
|
||||||
- "5173:5173"
|
- "5173:5173"
|
||||||
|
|||||||
Generated
+2
-2
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "web",
|
"name": "project-manager-web",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "web",
|
"name": "project-manager-web",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"pinia": "^4.0.3",
|
"pinia": "^4.0.3",
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "web",
|
"name": "project-manager-web",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
Reference in New Issue
Block a user