Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykbaszak committed Feb 14, 2024
1 parent 4a52d52 commit a3bc01e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 16 deletions.
13 changes: 0 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,6 @@ RUN apt update \
RUN pecl install xdebug \
&& docker-php-ext-enable xdebug

## install opcache extension
# RUN pecl install opcache \
# && docker-php-ext-enable opcache

## install amqp extension
# RUN apt-get install -y librabbitmq-dev \
# && pecl install amqp \
# && docker-php-ext-enable amqp

## install redis extension
# RUN pecl install redis \
# && docker-php-ext-enable redis

## install composer
RUN php -r "readfile('http://getcomposer.org/installer');" | php -- --install-dir=/usr/bin/ --filename=composer
RUN mkdir -p /.composer && chmod -R 777 /.composer
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Patryk Baszak

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
"title": "PBaszak Extended Api Doc Bundle",
"description": "PBaszak Extended Api Doc Bundle - Library",
"type": "symfony-bundle",
"license": "proprietary",
"authors": [],
"license": "MIT",
"authors": [
{
"name": "patrykbaszak",
"email": "patryk.baszak@gmail.com"
}
],
"keywords": [
"symfony",
"skeleton"
"bundle"
],
"minimum-stability": "stable",
"prefer-stable": true,
Expand Down

0 comments on commit a3bc01e

Please sign in to comment.