├── .gitmodules
├── install
├── templates
│ ├── response.html
│ ├── footer.html
│ └── header.html
├── index.php
└── css
│ └── style.css
├── .gitignore
├── Test
├── images
│ ├── camera-logo.png
│ ├── joe-lencioni.jpg
│ ├── topimages_01.jpg
│ ├── topimages_02.jpg
│ └── topimages_03.jpg
├── slirTestCase.class.php
└── core
│ ├── slir.class.Test.php
│ └── slirrequest.class.Test.php
├── phpunit.xml
├── .htaccess
├── COPYING
├── composer.json
├── index.php
├── core
├── FatalSLIRInstallerResponse.php
├── NegativeSLIRInstallerResponse.php
├── PositiveSLIRInstallerResponse.php
├── Libs
│ ├── GD
│ │ ├── Croppers
│ │ │ ├── SLIRCropper.php
│ │ │ ├── SLIRCropperTopcentered.php
│ │ │ ├── SLIRCropperCentered.php
│ │ │ └── SLIRCropperSmart.php
│ │ └── SLIRGDImage.php
│ ├── SLIRCoordinates.php
│ ├── SLIRImageLibrary.php
│ └── SLIRImage.php
├── SLIRInstallerResponse.php
├── SLIRGarbageCollector.php
├── SLIRExceptionHandler.php
├── SLIRConfigDefaults.php
├── SLIRInstaller.php
└── SLIRRequest.php
├── slirconfig-sample.class.php
├── README.md
└── icc
└── JpegIcc.php
/.gitmodules:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/install/templates/response.html:
--------------------------------------------------------------------------------
1 | %s %s
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | slirconfig.class.php
2 | cache
3 | /vendor
4 | slir-error-log
5 |
--------------------------------------------------------------------------------
/Test/images/camera-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rezozero/slir/HEAD/Test/images/camera-logo.png
--------------------------------------------------------------------------------
/Test/images/joe-lencioni.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rezozero/slir/HEAD/Test/images/joe-lencioni.jpg
--------------------------------------------------------------------------------
/Test/images/topimages_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rezozero/slir/HEAD/Test/images/topimages_01.jpg
--------------------------------------------------------------------------------
/Test/images/topimages_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rezozero/slir/HEAD/Test/images/topimages_02.jpg
--------------------------------------------------------------------------------
/Test/images/topimages_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rezozero/slir/HEAD/Test/images/topimages_03.jpg
--------------------------------------------------------------------------------
/install/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |