You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-32Lines changed: 23 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
1
# laminas-mvc-skeleton
2
2
3
3
> ## 🇷🇺 Русским гражданам
4
-
>
4
+
>
5
5
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
6
-
>
6
+
>
7
7
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
8
-
>
8
+
>
9
9
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
10
-
>
10
+
>
11
11
> ## 🇺🇸 To Citizens of Russia
12
-
>
12
+
>
13
13
> We at Laminas come from all over the world. Many of us have friends, family and colleagues in both Russia and Ukraine. Some of us were born in Russia. Some of us currently live in Russia. Some have grandparents who fought Nazis in World War II. Nobody here supports fascism.
14
-
>
14
+
>
15
15
> One team member has a Ukrainian relative who fled her home with her son. The train was delayed due to bombing on the road ahead. We have friends who are hiding in bomb shelters. We anxiously follow up on them after the air raids, which indiscriminately fire at hospitals, schools, kindergartens and houses. We're not taking this from any media. These are our actual experiences.
16
-
>
16
+
>
17
17
> You trust us enough to use our software. We ask that you trust us to say the truth on this. We need your help. Go out and protest this unnecessary war. Stop the bloodshed. Say "stop the war!"
18
18
19
19
## Introduction
@@ -43,9 +43,8 @@ $ php -S 0.0.0.0:8080 -t public
43
43
$ composer serve
44
44
```
45
45
46
-
This will start the cli-server on port 8080, and bind it to all network
47
-
interfaces. You can then visit the site at http://localhost:8080/
48
-
- which will bring up Laminas MVC Skeleton welcome page.
46
+
This will start the cli-server on port 8080, and bind it to all network interfaces.
47
+
You can then visit the site at http://localhost:8080/ which will bring up Laminas MVC Skeleton welcome page.
49
48
50
49
**Note:** The built-in CLI server is *for development only*.
51
50
@@ -66,7 +65,7 @@ configuration in `config/autoload/development.local.php.dist`. Enabling
66
65
development mode will copy these files to versions removing the `.dist` suffix,
67
66
while disabling development mode will remove those copies.
68
67
69
-
Development mode is automatically enabled as part of the skeleton installation process.
68
+
Development mode is automatically enabled as part of the skeleton installation process.
70
69
After making changes to one of the above-mentioned `.dist` configuration files you will
71
70
either need to disable then enable development mode for the changes to take effect,
72
71
or manually make matching updates to the `.dist`-less copies of those files.
@@ -97,7 +96,7 @@ control. (If you want to make the modifications permanent, edit the
97
96
## Running Psalm Static Analysis
98
97
99
98
To run the supplied skeleton static analysis, you need to do one of the following:
100
-
It is recommended to install the test components from laminas (laminas/laminas-test),
99
+
It is recommended to install the test components from laminas (laminas/laminas-test),
101
100
as this is used in the tests supplied.
102
101
103
102
```bash
@@ -112,10 +111,8 @@ $ composer static-analysis
112
111
113
112
## Using docker-compose
114
113
115
-
This skeleton provides a `docker-compose.yml` for use with
116
-
[docker-compose](https://docs.docker.com/compose/); it
117
-
uses the provided `Dockerfile` to build a docker image
118
-
for the `laminas` container created with `docker-compose`.
114
+
This skeleton provides a `docker-compose.yml` for use with [docker-compose](https://docs.docker.com/compose/);
115
+
it uses the provided `Dockerfile` to build a docker image for the `laminas` container created with `docker-compose`.
119
116
120
117
Build and start the image and container using:
121
118
@@ -125,19 +122,16 @@ $ docker-compose up -d --build
125
122
126
123
At this point, you can visit http://localhost:8080 to see the site running.
127
124
128
-
You can also run commands such as `composer` in the container. The container
129
-
environment is named "laminas" so you will pass that value to
130
-
`docker-compose run`:
125
+
You can also run commands such as `composer` in the container.
126
+
The container environment is named "laminas" so you will pass that value to `docker-compose run`:
131
127
132
128
```bash
133
129
$ docker-compose run laminas composer install
134
130
```
135
131
136
-
Some composer packages optionally use additional PHP extensions.
137
-
The Dockerfile contains several commented-out commands
138
-
which enable some of the more popular php extensions.
139
-
For example, to install `pdo-pgsql` support for `laminas/laminas-db`
140
-
uncomment the lines:
132
+
Some composer packages optionally use additional PHP extensions.
133
+
The Dockerfile contains several commented-out commands which enable some of the more popular php extensions.
134
+
For example, to install `pdo-pgsql` support for `laminas/laminas-db` uncomment the lines:
141
135
142
136
```sh
143
137
# RUN apt-get install --yes libpq-dev \
@@ -153,8 +147,8 @@ then re-run the `docker-compose up -d --build` line as above.
153
147
154
148
### Apache setup
155
149
156
-
To setup apache, setup a virtual host to point to the public/ directory of the
157
-
project and you should be ready to go! It should look something like below:
150
+
To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go!
151
+
It should look something like below:
158
152
159
153
```apache
160
154
<VirtualHost *:80>
@@ -174,9 +168,7 @@ project and you should be ready to go! It should look something like below:
174
168
175
169
### Nginx setup
176
170
177
-
To setup nginx, open your `/path/to/nginx/nginx.conf` and add an
To setup nginx, open your `/path/to/nginx/nginx.conf` and add an [include directive](http://nginx.org/en/docs/ngx_core_module.html#include) below into `http` block if it does not already exist:
180
172
181
173
```nginx
182
174
http {
@@ -185,9 +177,8 @@ http {
185
177
}
186
178
```
187
179
188
-
189
-
Create a virtual host configuration file for your project under `/path/to/nginx/sites-enabled/laminasapp.localhost.conf`
190
-
it should look something like below:
180
+
Create a virtual host configuration file for your project under `/path/to/nginx/sites-enabled/laminasapp.localhost.conf`.
0 commit comments