Skip to content

Commit a3bc01e

Browse files
committed
.
1 parent 4a52d52 commit a3bc01e

File tree

3 files changed

+29
-16
lines changed

3 files changed

+29
-16
lines changed

Dockerfile

-13
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,6 @@ RUN apt update \
88
RUN pecl install xdebug \
99
&& docker-php-ext-enable xdebug
1010

11-
## install opcache extension
12-
# RUN pecl install opcache \
13-
# && docker-php-ext-enable opcache
14-
15-
## install amqp extension
16-
# RUN apt-get install -y librabbitmq-dev \
17-
# && pecl install amqp \
18-
# && docker-php-ext-enable amqp
19-
20-
## install redis extension
21-
# RUN pecl install redis \
22-
# && docker-php-ext-enable redis
23-
2411
## install composer
2512
RUN php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer
2613
RUN mkdir -p /.composer && chmod -R 777 /.composer

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Patryk Baszak
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

composer.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@
33
"title": "PBaszak Extended Api Doc Bundle",
44
"description": "PBaszak Extended Api Doc Bundle - Library",
55
"type": "symfony-bundle",
6-
"license": "proprietary",
7-
"authors": [],
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "patrykbaszak",
10+
"email": "[email protected]"
11+
}
12+
],
813
"keywords": [
914
"symfony",
10-
"skeleton"
15+
"bundle"
1116
],
1217
"minimum-stability": "stable",
1318
"prefer-stable": true,

0 commit comments

Comments
 (0)