Skip to content

Commit a1a7035

Browse files
Remove all symlinks
1 parent b570dde commit a1a7035

File tree

144 files changed

+1635
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+1635
-87
lines changed

api-platform/core/2.5/config/routes

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
api_platform:
2+
resource: .
3+
type: api_platform
4+
prefix: /api

api-platform/core/2.5/manifest.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

api-platform/core/2.5/manifest.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"bundles": {
3+
"ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\ApiPlatformBundle": ["all"]
4+
},
5+
"copy-from-recipe": {
6+
"config/": "%CONFIG_DIR%/",
7+
"src/": "%SRC_DIR%/"
8+
}
9+
}

api-platform/core/2.5/post-install.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<bg=blue;fg=white> </>
2+
<bg=blue;fg=white> What's next? </>
3+
<bg=blue;fg=white> </>
4+
5+
* Your API is almost ready:
6+
1. Create your first API resource in <info>src/Entity</info>;
7+
2. Go to <info>/api</info> to browse your API
8+
9+
* To enable the GraphQL support, run <comment>composer require webonyx/graphql-php</>,
10+
then browse <info>/api/graphql</info>.
11+
12+
* <fg=blue>Read</> the documentation at <comment>https://api-platform.com/docs</>

api-platform/core/2.5/src

Lines changed: 0 additions & 1 deletion
This file was deleted.

api-platform/core/2.5/src/Entity/.gitignore

Whitespace-only changes.

doctrine/doctrine-bundle/1.12/manifest.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"bundles": {
3+
"Doctrine\\Bundle\\DoctrineBundle\\DoctrineBundle": ["all"]
4+
},
5+
"copy-from-recipe": {
6+
"config/": "%CONFIG_DIR%/",
7+
"src/": "%SRC_DIR%/"
8+
},
9+
"env": {
10+
"#1": "Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url",
11+
"#2": "IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml",
12+
"#3": "",
13+
"#4": "DATABASE_URL=\"sqlite:///%kernel.project_dir%/var/data.db\"",
14+
"#5": "DATABASE_URL=\"mysql://db_user:[email protected]:3306/db_name?serverVersion=5.7\"",
15+
"DATABASE_URL": "postgresql://db_user:[email protected]:5432/db_name?serverVersion=13&charset=utf8"
16+
},
17+
"dockerfile": [
18+
"RUN apk add --no-cache --virtual .pgsql-deps postgresql-dev && \\",
19+
"\tdocker-php-ext-install -j$(nproc) pdo_pgsql && \\",
20+
"\tapk add --no-cache --virtual .pgsql-rundeps so:libpq.so.5 && \\",
21+
"\tapk del .pgsql-deps"
22+
],
23+
"docker-compose": {
24+
"docker-compose.yml": {
25+
"services": [
26+
"database:",
27+
" image: postgres:${POSTGRES_VERSION:-13}-alpine",
28+
" environment:",
29+
" POSTGRES_DB: ${POSTGRES_DB:-app}",
30+
" # You should definitely change the password in production",
31+
" POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-ChangeMe}",
32+
" POSTGRES_USER: ${POSTGRES_USER:-symfony}",
33+
" volumes:",
34+
" - db-data:/var/lib/postgresql/data:rw",
35+
" # You may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!",
36+
" # - ./docker/db/data:/var/lib/postgresql/data:rw"
37+
],
38+
"volumes": ["db-data:"]
39+
},
40+
"docker-compose.override.yml": {
41+
"services": [
42+
"database:",
43+
" ports:",
44+
" - \"5432\""
45+
]
46+
}
47+
}
48+
}

0 commit comments

Comments
 (0)