Skip to content

Commit

Permalink
Use Composer for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Afterster committed Sep 13, 2015
1 parent fa8084d commit 16d80f8
Show file tree
Hide file tree
Showing 1,882 changed files with 3,711 additions and 327,466 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ channel/.htaccess
*.sln
*.v11.suo
*.suo
logs
logs/
/nbproject/private/
.pc
/tmp
tmp/
log/
*~
*#
*#
*.log
/lib/vendor/
/lib/components/
2 changes: 2 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
use Symfony\CS\FixerInterface;

$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude('lib/components')
->exclude('lib/vendor')
->exclude('modules')
->exclude('nbproject')
->in(__DIR__)
Expand Down
16 changes: 16 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
paths: { }

Expand All @@ -8,6 +10,8 @@ tools:
enabled: true
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
- 'themes/*'
paths: { }
Expand All @@ -21,16 +25,22 @@ tools:
excluded_dirs: { }
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
paths: { }
php_analyzer:
enabled: true
extensions:
- php
dependency_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
- 'themes/*'
paths: { }
Expand All @@ -44,16 +54,22 @@ tools:
- '\bimplement(?:s|ed)?\b'
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
paths: { }
php_loc:
enabled: true
excluded_dirs:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
php_cpd:
enabled: true
excluded_dirs: { }
filter:
excluded_paths:
- 'lib/components/*'
- 'lib/vendor/*'
- 'modules/*'
paths: { }
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ Ampache includes some external modules that carry their own licensing.
* [PHPMailer](https://github.com/PHPMailer/PHPMailer): LGPL v2.1
* [jQuery](http://jquery.org): MIT
* [Requests](http://requests.ryanmccue.info): ISC Licensed
* [Whatever:hover](http://www.xs4all.nl/~peterned): LGPL v2.1
* [xbmc-php-rpc](https://github.com/karlrixon/xbmc-php-rpc): GPL v3
* [Dropbox SDK](https://github.com/dropbox/dropbox-sdk-php): MIT
* [jPlayer](http://jplayer.org): MIT
Expand Down
Loading

0 comments on commit 16d80f8

Please sign in to comment.