Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fb325f8
Remove .DS_Store
alexsomeoddpilot May 12, 2014
e3a7783
Setting up composer
alexsomeoddpilot May 12, 2014
9ab0aa4
Moving read me to md
alexsomeoddpilot May 12, 2014
1e1fe00
Removing changelog
alexsomeoddpilot May 12, 2014
0c3ee75
Setting up constructor
alexsomeoddpilot May 12, 2014
cebc39b
Stubbing out class
alexsomeoddpilot May 12, 2014
eb0fdac
Send error image method
alexsomeoddpilot May 12, 2014
edb67da
Changing documentation to simpler docco-like style
alexsomeoddpilot May 12, 2014
0e1fc23
Refresh cache method
alexsomeoddpilot May 12, 2014
55f39b8
The meat
alexsomeoddpilot May 12, 2014
7a94c01
The real process
alexsomeoddpilot May 12, 2014
eb997e0
Fixes
alexsomeoddpilot May 12, 2014
29bd311
Working!
alexsomeoddpilot May 12, 2014
56bb290
Removing old version
alexsomeoddpilot May 12, 2014
c18bb0c
Changing options
alexsomeoddpilot May 12, 2014
c3751eb
Fixing if no resolution cookie
alexsomeoddpilot May 12, 2014
074f721
Update version
alexsomeoddpilot May 12, 2014
a43474b
Fixing trailing comma
alexsomeoddpilot May 12, 2014
7090918
Simplifying extension
alexsomeoddpilot May 12, 2014
d251d95
Add PSR
alexsomeoddpilot May 12, 2014
f5bf78e
Fixing PSR
alexsomeoddpilot May 12, 2014
30d542f
Fixing Autoload
alexsomeoddpilot May 12, 2014
cafc14c
Futzing with namespace
alexsomeoddpilot May 12, 2014
10f1672
Working with autoloader
alexsomeoddpilot May 12, 2014
3a8f3f5
Don't use document root for cache file path
alexsomeoddpilot May 12, 2014
64de2a3
Updating readme
alexsomeoddpilot May 12, 2014
c2e03df
Unit testing
alexsomeoddpilot May 13, 2014
b4e1356
Removing unneeded script
alexsomeoddpilot May 13, 2014
fb723ee
Trying again
alexsomeoddpilot May 13, 2014
670ee97
Adding scrutinizer
alexsomeoddpilot May 13, 2014
380bf8f
Adding Badges
alexsomeoddpilot May 13, 2014
2a6b1d4
Minor improvements
alexsomeoddpilot May 13, 2014
f4629ce
Passing int instead of bool to image interlace
alexsomeoddpilot May 13, 2014
4524aaa
Move resolution finding to own function
alexsomeoddpilot May 13, 2014
2b6aebf
Renaming method
alexsomeoddpilot May 13, 2014
a8cdae4
Scrutinizer Auto-Fixes
scrutinizer-auto-fixer May 13, 2014
bf7c134
Merge pull request #1 from alexsomeoddpilot/scrutinizer-patch-1
alexsomeoddpilot May 13, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store

/vendor/
10 changes: 5 additions & 5 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
# Add any directories you wish to omit from the Adaptive-Images process on a new line, as follows:
# RewriteCond %{REQUEST_URI} !ignore-this-directory
# RewriteCond %{REQUEST_URI} !and-ignore-this-directory-too

RewriteCond %{REQUEST_URI} !assets

# don't apply the AI behaviour to images inside AI's cache folder:
RewriteCond %{REQUEST_URI} !ai-cache

# Send any GIF, JPG, or PNG request that IS NOT stored inside one of the above directories
# to adaptive-images.php so we can select appropriately sized versions
RewriteRule \.(?:jpe?g|gif|png)$ adaptive-images.php

RewriteRule \.(?:jpe?g|gif|png)$ index.php

# END Adaptive-Images -------------------------------------------------------------------------------
</IfModule>
</IfModule>
10 changes: 10 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
inherit: true
filter:
paths: [AdaptiveImages/*]
excluded_paths: [tests/*]
before_commands:
- "composer install"
tools:
php_code_coverage: true
php_cpd: true
php_analyzer: true
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script: composer install
Loading