forked from endroid/qr-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
254 additions
and
1,317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/bin | ||
/composer.lock | ||
/composer.phar | ||
/phpunit.xml | ||
/vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
language: php | ||
|
||
php: | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
before_install: | ||
- phpenv config-rm xdebug.ini | ||
- composer self-update && composer install --no-interaction | ||
- composer install --no-interaction | ||
|
||
script: bin/phpunit | ||
script: vendor/bin/phpunit | ||
|
||
notifications: | ||
email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,28 @@ | ||
{ | ||
"name": "endroid/qrcode", | ||
"description": "Endroid QR Code", | ||
"keywords": ["endroid", "qrcode", "qr", "code", "bundle", "symfony", "flex"], | ||
"keywords": ["endroid", "qrcode", "qr", "code", "bundle", "php"], | ||
"homepage": "https://github.com/endroid/QrCode", | ||
"type": "symfony-bundle", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jeroen van den Enden", | ||
"email": "[email protected]", | ||
"homepage": "http://endroid.nl/" | ||
"homepage": "https://endroid.nl/" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.6", | ||
"php": ">=7.1", | ||
"ext-gd": "*", | ||
"symfony/options-resolver": ">=2.7", | ||
"symfony/options-resolver": "^2.7|^3.0|^4.0", | ||
"bacon/bacon-qr-code": "^1.0.3", | ||
"khanamiryan/qrcode-detector-decoder": "^1.0", | ||
"symfony/property-access": ">=2.7", | ||
"symfony/property-access": "^2.7|^3.0|^4.0", | ||
"myclabs/php-enum": "^1.5" | ||
}, | ||
"require-dev": { | ||
"symfony/asset": ">=2.7", | ||
"symfony/browser-kit": ">=2.7", | ||
"symfony/finder": ">=2.7", | ||
"symfony/framework-bundle": ">=2.7", | ||
"symfony/http-kernel": ">=2.7", | ||
"symfony/templating": ">=2.7", | ||
"symfony/twig-bundle": ">=2.7", | ||
"symfony/yaml": ">=2.7", | ||
"phpunit/phpunit": ">=5.7" | ||
"phpunit/phpunit": "^5.7|^6.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
@@ -42,12 +34,9 @@ | |
"Endroid\\QrCode\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"bin-dir": "bin" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.x-dev" | ||
"dev-master": "3.x-dev" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit bootstrap="tests/Bundle/app/bootstrap.php" colors="true"> | ||
<phpunit bootstrap="vendor/autoload.php" colors="true"> | ||
<testsuites> | ||
<testsuite> | ||
<directory suffix="Test.php">tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<php> | ||
<server name="KERNEL_DIR" value="tests/Bundle/app" /> | ||
</php> | ||
</phpunit> |
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
src/Bundle/QrCodeBundle/DependencyInjection/Compiler/WriterRegistryCompilerPass.php
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.