Skip to content

Commit 6a19943

Browse files
Merge branch 'no-symlinks'
* no-symlinks: Remove all symlinks
2 parents b570dde + a1a7035 commit 6a19943

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

-1
This file was deleted.
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

-1
This file was deleted.

api-platform/core/2.5/manifest.json

+9
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

-1
This file was deleted.
+12
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

-1
This file was deleted.

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

Whitespace-only changes.

doctrine/doctrine-bundle/1.12/manifest.json

-1
This file was deleted.
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+
}

doctrine/doctrine-bundle/1.12/post-install.txt

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<bg=blue;fg=white> </>
2+
<bg=blue;fg=white> Database Configuration </>
3+
<bg=blue;fg=white> </>
4+
5+
* Modify your DATABASE_URL config in <fg=green>.env</>
6+
7+
* Configure the <fg=green>driver</> (mysql) and
8+
<fg=green>server_version</> (5.7) in <fg=green>config/packages/doctrine.yaml</>

doctrine/doctrine-bundle/1.12/src

-1
This file was deleted.

doctrine/doctrine-bundle/1.12/src/Entity/.gitignore

Whitespace-only changes.

doctrine/doctrine-bundle/1.12/src/Repository/.gitignore

Whitespace-only changes.

doctrine/doctrine-bundle/2.0/config/packages/prod/doctrine.yaml

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
doctrine:
2+
orm:
3+
auto_generate_proxy_classes: false
4+
metadata_cache_driver:
5+
type: pool
6+
pool: doctrine.system_cache_pool
7+
query_cache_driver:
8+
type: pool
9+
pool: doctrine.system_cache_pool
10+
result_cache_driver:
11+
type: pool
12+
pool: doctrine.result_cache_pool
13+
14+
framework:
15+
cache:
16+
pools:
17+
doctrine.result_cache_pool:
18+
adapter: cache.app
19+
doctrine.system_cache_pool:
20+
adapter: cache.system

doctrine/doctrine-bundle/2.0/manifest.json

-1
This file was deleted.
+48
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+
}

doctrine/doctrine-bundle/2.0/src

-1
This file was deleted.

doctrine/doctrine-bundle/2.0/src/Entity/.gitignore

Whitespace-only changes.

doctrine/doctrine-bundle/2.0/src/Repository/.gitignore

Whitespace-only changes.

phpunit/phpunit/4.7/tests

-1
This file was deleted.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
use Symfony\Component\Dotenv\Dotenv;
4+
5+
require dirname(__DIR__).'/vendor/autoload.php';
6+
7+
if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {
8+
require dirname(__DIR__).'/config/bootstrap.php';
9+
} elseif (method_exists(Dotenv::class, 'bootEnv')) {
10+
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
11+
}

phpunit/phpunit/9.3/tests

-1
This file was deleted.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
use Symfony\Component\Dotenv\Dotenv;
4+
5+
require dirname(__DIR__).'/vendor/autoload.php';
6+
7+
if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {
8+
require dirname(__DIR__).'/config/bootstrap.php';
9+
} elseif (method_exists(Dotenv::class, 'bootEnv')) {
10+
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
11+
}

symfony/console/3.3/config/bootstrap.php

-1
This file was deleted.
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php
2+
3+
use Symfony\Component\Dotenv\Dotenv;
4+
5+
require dirname(__DIR__).'/vendor/autoload.php';
6+
7+
if (!class_exists(Dotenv::class)) {
8+
throw new LogicException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.');
9+
}
10+
11+
// Load cached env vars if the .env.local.php file exists
12+
// Run "composer dump-env prod" to create it (requires symfony/flex >=1.2)
13+
if (is_array($env = @include dirname(__DIR__).'/.env.local.php') && (!isset($env['APP_ENV']) || ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env['APP_ENV']) === $env['APP_ENV'])) {
14+
(new Dotenv(false))->populate($env);
15+
} else {
16+
$path = dirname(__DIR__).'/.env';
17+
$dotenv = new Dotenv(false);
18+
19+
// load all the .env files
20+
if (method_exists($dotenv, 'loadEnv')) {
21+
$dotenv->loadEnv($path);
22+
} else {
23+
// fallback code in case your Dotenv component is not 4.2 or higher (when loadEnv() was added)
24+
25+
if (file_exists($path) || !file_exists($p = "$path.dist")) {
26+
$dotenv->load($path);
27+
} else {
28+
$dotenv->load($p);
29+
}
30+
31+
if (null === $env = $_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) {
32+
$dotenv->populate(array('APP_ENV' => $env = 'dev'));
33+
}
34+
35+
if ('test' !== $env && file_exists($p = "$path.local")) {
36+
$dotenv->load($p);
37+
$env = $_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env;
38+
}
39+
40+
if (file_exists($p = "$path.$env")) {
41+
$dotenv->load($p);
42+
}
43+
44+
if (file_exists($p = "$path.$env.local")) {
45+
$dotenv->load($p);
46+
}
47+
}
48+
}
49+
50+
$_SERVER += $_ENV;
51+
$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
52+
$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
53+
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';

symfony/console/4.2/bin

-1
This file was deleted.

symfony/console/4.2/bin/console

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
use App\Kernel;
5+
use Symfony\Bundle\FrameworkBundle\Console\Application;
6+
use Symfony\Component\Console\Input\ArgvInput;
7+
use Symfony\Component\Debug\Debug;
8+
9+
if (!in_array(PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) {
10+
echo 'Warning: The console should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
11+
}
12+
13+
set_time_limit(0);
14+
15+
require dirname(__DIR__).'/vendor/autoload.php';
16+
17+
if (!class_exists(Application::class)) {
18+
throw new LogicException('You need to add "symfony/framework-bundle" as a Composer dependency.');
19+
}
20+
21+
$input = new ArgvInput();
22+
if (null !== $env = $input->getParameterOption(['--env', '-e'], null, true)) {
23+
putenv('APP_ENV='.$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = $env);
24+
}
25+
26+
if ($input->hasParameterOption('--no-debug', true)) {
27+
putenv('APP_DEBUG='.$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = '0');
28+
}
29+
30+
require dirname(__DIR__).'/config/bootstrap.php';
31+
32+
if ($_SERVER['APP_DEBUG']) {
33+
umask(0000);
34+
35+
if (class_exists(Debug::class)) {
36+
Debug::enable();
37+
}
38+
}
39+
40+
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
41+
$application = new Application($kernel);
42+
$application->run($input);

symfony/console/4.2/config/bootstrap.php

-1
This file was deleted.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
use Symfony\Component\Dotenv\Dotenv;
4+
5+
require dirname(__DIR__).'/vendor/autoload.php';
6+
7+
if (!class_exists(Dotenv::class)) {
8+
throw new LogicException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.');
9+
}
10+
11+
// Load cached env vars if the .env.local.php file exists
12+
// Run "composer dump-env prod" to create it (requires symfony/flex >=1.2)
13+
if (is_array($env = @include dirname(__DIR__).'/.env.local.php') && (!isset($env['APP_ENV']) || ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env['APP_ENV']) === $env['APP_ENV'])) {
14+
(new Dotenv(false))->populate($env);
15+
} else {
16+
// load all the .env files
17+
(new Dotenv(false))->loadEnv(dirname(__DIR__).'/.env');
18+
}
19+
20+
$_SERVER += $_ENV;
21+
$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
22+
$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
23+
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';

symfony/console/4.2/manifest.json

-1
This file was deleted.

symfony/console/4.2/manifest.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"copy-from-recipe": {
3+
"bin/": "%BIN_DIR%/",
4+
"config/": "%CONFIG_DIR%/"
5+
},
6+
"aliases": ["cli"]
7+
}

symfony/console/4.4/config

-1
This file was deleted.
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
use Symfony\Component\Dotenv\Dotenv;
4+
5+
require dirname(__DIR__).'/vendor/autoload.php';
6+
7+
if (!class_exists(Dotenv::class)) {
8+
throw new LogicException('Please run "composer require symfony/dotenv" to load the ".env" files configuring the application.');
9+
}
10+
11+
// Load cached env vars if the .env.local.php file exists
12+
// Run "composer dump-env prod" to create it (requires symfony/flex >=1.2)
13+
if (is_array($env = @include dirname(__DIR__).'/.env.local.php') && (!isset($env['APP_ENV']) || ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env['APP_ENV']) === $env['APP_ENV'])) {
14+
(new Dotenv(false))->populate($env);
15+
} else {
16+
// load all the .env files
17+
(new Dotenv(false))->loadEnv(dirname(__DIR__).'/.env');
18+
}
19+
20+
$_SERVER += $_ENV;
21+
$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
22+
$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
23+
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';

symfony/console/4.4/manifest.json

-1
This file was deleted.

symfony/console/4.4/manifest.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"copy-from-recipe": {
3+
"bin/": "%BIN_DIR%/",
4+
"config/": "%CONFIG_DIR%/"
5+
},
6+
"aliases": ["cli"]
7+
}

symfony/framework-bundle/3.4/config/bootstrap.php

-1
This file was deleted.

0 commit comments

Comments
 (0)