Skip to content

Commit 32f74cb

Browse files
committed
Add initial set of files
0 parents  commit 32f74cb

Some content is hidden

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

42 files changed

+11191
-0
lines changed

.env

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# In all environments, the following files are loaded if they exist,
2+
# the latter taking precedence over the former:
3+
#
4+
# * .env contains default values for the environment variables needed by the app
5+
# * .env.local uncommitted file with local overrides
6+
# * .env.$APP_ENV committed environment-specific defaults
7+
# * .env.$APP_ENV.local uncommitted environment-specific overrides
8+
#
9+
# Real environment variables win over .env files.
10+
#
11+
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
12+
#
13+
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
14+
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
15+
16+
###> symfony/framework-bundle ###
17+
APP_ENV=dev
18+
APP_SECRET=2ef2b3dec562b5317e11e30ba4705494
19+
###< symfony/framework-bundle ###
20+
21+
###> symfony/mailer ###
22+
# MAILER_DSN=null://null
23+
###< symfony/mailer ###
24+
25+
###> doctrine/doctrine-bundle ###
26+
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
27+
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
28+
#
29+
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
30+
# DATABASE_URL="mysql://db_user:[email protected]:3306/db_name?serverVersion=5.7&charset=utf8mb4"
31+
DATABASE_URL="postgresql://symfony:[email protected]:5432/app?serverVersion=13&charset=utf8"
32+
###< doctrine/doctrine-bundle ###

.env.test

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# define your env variables for the test env here
2+
KERNEL_CLASS='App\Kernel'
3+
APP_SECRET='$ecretf0rt3st'
4+
SYMFONY_DEPRECATIONS_HELPER=999999
5+
PANTHER_APP_ENV=panther
6+
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
###> symfony/framework-bundle ###
3+
/.env.local
4+
/.env.local.php
5+
/.env.*.local
6+
/config/secrets/prod/prod.decrypt.private.php
7+
/public/bundles/
8+
/var/
9+
/vendor/
10+
###< symfony/framework-bundle ###
11+
12+
###> symfony/phpunit-bridge ###
13+
.phpunit.result.cache
14+
/phpunit.xml
15+
###< symfony/phpunit-bridge ###
16+
17+
###> phpunit/phpunit ###
18+
/phpunit.xml
19+
.phpunit.result.cache
20+
###< phpunit/phpunit ###

bin/console

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
use App\Kernel;
5+
use Symfony\Bundle\FrameworkBundle\Console\Application;
6+
7+
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
8+
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
9+
}
10+
11+
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
12+
13+
return function (array $context) {
14+
$kernel = new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
15+
16+
return new Application($kernel);
17+
};

bin/phpunit

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env php
2+
<?php
3+
4+
if (!ini_get('date.timezone')) {
5+
ini_set('date.timezone', 'UTC');
6+
}
7+
8+
if (is_file(dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit')) {
9+
define('PHPUNIT_COMPOSER_INSTALL', dirname(__DIR__).'/vendor/autoload.php');
10+
require PHPUNIT_COMPOSER_INSTALL;
11+
PHPUnit\TextUI\Command::main();
12+
} else {
13+
if (!is_file(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php')) {
14+
echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
15+
exit(1);
16+
}
17+
18+
require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php';
19+
}

composer.json

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"type": "project",
3+
"license": "proprietary",
4+
"minimum-stability": "stable",
5+
"prefer-stable": true,
6+
"require": {
7+
"php": ">=7.2.5",
8+
"ext-ctype": "*",
9+
"ext-iconv": "*",
10+
"doctrine/annotations": "^1.0",
11+
"doctrine/doctrine-bundle": "^2.6",
12+
"doctrine/doctrine-migrations-bundle": "^3.2",
13+
"doctrine/orm": "^2.11",
14+
"phpdocumentor/reflection-docblock": "^5.3",
15+
"phpstan/phpdoc-parser": "^1.4",
16+
"sensio/framework-extra-bundle": "^6.1",
17+
"symfony/asset": "5.4.*",
18+
"symfony/console": "5.4.*",
19+
"symfony/dotenv": "5.4.*",
20+
"symfony/expression-language": "5.4.*",
21+
"symfony/flex": "^1.17|^2",
22+
"symfony/form": "5.4.*",
23+
"symfony/framework-bundle": "5.4.*",
24+
"symfony/http-client": "5.4.*",
25+
"symfony/intl": "5.4.*",
26+
"symfony/mailer": "5.4.*",
27+
"symfony/mime": "5.4.*",
28+
"symfony/monolog-bundle": "^3.1",
29+
"symfony/notifier": "5.4.*",
30+
"symfony/process": "5.4.*",
31+
"symfony/property-access": "5.4.*",
32+
"symfony/property-info": "5.4.*",
33+
"symfony/proxy-manager-bridge": "5.4.*",
34+
"symfony/runtime": "5.4.*",
35+
"symfony/security-bundle": "5.4.*",
36+
"symfony/serializer": "5.4.*",
37+
"symfony/string": "5.4.*",
38+
"symfony/translation": "5.4.*",
39+
"symfony/twig-bundle": "5.4.*",
40+
"symfony/validator": "5.4.*",
41+
"symfony/web-link": "5.4.*",
42+
"symfony/yaml": "5.4.*",
43+
"twig/extra-bundle": "^2.12|^3.0",
44+
"twig/twig": "^2.12|^3.0"
45+
},
46+
"require-dev": {
47+
"phpunit/phpunit": "^9.5",
48+
"symfony/browser-kit": "5.4.*",
49+
"symfony/css-selector": "5.4.*",
50+
"symfony/debug-bundle": "5.4.*",
51+
"symfony/maker-bundle": "^1.0",
52+
"symfony/phpunit-bridge": "^6.0",
53+
"symfony/stopwatch": "5.4.*",
54+
"symfony/web-profiler-bundle": "5.4.*"
55+
},
56+
"config": {
57+
"allow-plugins": {
58+
"composer/package-versions-deprecated": true,
59+
"symfony/flex": true,
60+
"symfony/runtime": true
61+
},
62+
"optimize-autoloader": true,
63+
"preferred-install": {
64+
"*": "dist"
65+
},
66+
"sort-packages": true
67+
},
68+
"autoload": {
69+
"psr-4": {
70+
"App\\": "src/"
71+
}
72+
},
73+
"autoload-dev": {
74+
"psr-4": {
75+
"App\\Tests\\": "tests/"
76+
}
77+
},
78+
"replace": {
79+
"symfony/polyfill-ctype": "*",
80+
"symfony/polyfill-iconv": "*",
81+
"symfony/polyfill-php72": "*"
82+
},
83+
"scripts": {
84+
"auto-scripts": {
85+
"cache:clear": "symfony-cmd",
86+
"assets:install %PUBLIC_DIR%": "symfony-cmd"
87+
},
88+
"post-install-cmd": [
89+
"@auto-scripts"
90+
],
91+
"post-update-cmd": [
92+
"@auto-scripts"
93+
]
94+
},
95+
"conflict": {
96+
"symfony/symfony": "*"
97+
},
98+
"extra": {
99+
"symfony": {
100+
"allow-contrib": false,
101+
"require": "5.4.*"
102+
}
103+
}
104+
}

0 commit comments

Comments
 (0)