Skip to content

Commit a029678

Browse files
authoredJun 13, 2024··
install symfony and doctrine (#18)
* add symfony and doctrine * fix ci db url
1 parent b95c3aa commit a029678

23 files changed

+4831
-2592
lines changed
 

‎.env

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
# https://symfony.com/doc/current/configuration/secrets.html
13+
#
14+
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
15+
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
16+
17+
###> symfony/framework-bundle ###
18+
APP_ENV=dev
19+
APP_SECRET=53ed3ef67433fbe875020eaee73acb0d
20+
###< symfony/framework-bundle ###
21+
22+
DATABASE_URL="postgresql://root:password@postgres/app?serverVersion=16&charset=utf8"

‎.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,21 @@ jobs:
99
ci:
1010
runs-on: ubuntu-latest
1111

12+
services:
13+
postgres:
14+
image: postgres:16
15+
env:
16+
POSTGRES_PASSWORD: password
17+
POSTGRES_USER: "root"
18+
POSTGRES_DB: "app"
19+
options: >-
20+
--health-cmd pg_isready
21+
--health-interval 10s
22+
--health-timeout 5s
23+
--health-retries 5
24+
ports:
25+
- 5432:5432
26+
1227
steps:
1328
- uses: actions/checkout@v2
1429

@@ -23,3 +38,5 @@ jobs:
2338

2439
- name: "Run ci script"
2540
run: "composer ci"
41+
env:
42+
DATABASE_URL: postgresql://root:password@localhost/app?serverVersion=16&charset=utf8

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
.php-cs-fixer.cache
33
.phpunit.cache
44
/.idea/
5+
/var/
6+
/.env.local
7+
/.env.local.php
8+
/.env.*.local

‎.php-cs-fixer.php

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<?php
22

33
$finder = PhpCsFixer\Finder::create()
4+
->in(__DIR__.'/bin')
5+
->in(__DIR__.'/config')
6+
->in(__DIR__.'/migrations')
7+
->in(__DIR__.'/public')
48
->in(__DIR__.'/src')
59
->in(__DIR__.'/tests')
610
;

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM php:8.3
22
RUN apt-get update -yqq
33
RUN apt-get install -y libzip-dev zip wget git procps
44
COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/
5-
RUN install-php-extensions decimal
5+
RUN install-php-extensions pdo_pgsql decimal
66
RUN curl -sS https://getcomposer.org/installer | php
77
RUN mv composer.phar /usr/local/bin/composer
88
RUN echo "memory_limit=-1" > $PHP_INI_DIR/conf.d/memory-limit.ini

‎bin/console

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

‎composer.json

+22-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@
1111
],
1212
"require": {
1313
"php": "^8.3",
14+
"doctrine/doctrine-bundle": "^2.12",
15+
"doctrine/doctrine-migrations-bundle": "^3.3",
1416
"fale/isbn": "^3.1",
1517
"munusphp/munus": "^0.16",
16-
"symfony/uid": "^7.1"
18+
"symfony/console": "^7.1",
19+
"symfony/dotenv": "^7.1",
20+
"symfony/framework-bundle": "^7.1",
21+
"symfony/runtime": "^7.1",
22+
"symfony/uid": "^7.1",
23+
"symfony/yaml": "^7.1"
1724
},
1825
"require-dev": {
1926
"behat/behat": "^3.14",
@@ -52,13 +59,26 @@
5259
],
5360
"ci": [
5461
"composer validate",
62+
"composer audit",
63+
"@tests:database:reset",
5564
"@check-cs",
5665
"@phpstan",
5766
"@phpunit",
5867
"@behat"
68+
],
69+
"database:reset": [
70+
"bin/console d:d:d -f -n --if-exists",
71+
"bin/console d:d:c -n",
72+
"bin/console d:m:m -n"
73+
],
74+
"tests:database:reset": [
75+
"APP_ENV=test composer database:reset"
5976
]
6077
},
6178
"config": {
62-
"sort-packages": true
79+
"sort-packages": true,
80+
"allow-plugins": {
81+
"symfony/runtime": true
82+
}
6383
}
6484
}

0 commit comments

Comments
 (0)
Please sign in to comment.