-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from eclipxe13/maintenance-20230222
Mantenimiento 2023-02-22
- Loading branch information
Showing
13 changed files
with
183 additions
and
66 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
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
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,7 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phive xmlns="https://phar.io/phive"> | ||
<phar name="php-cs-fixer" version="^3.5.0" installed="3.5.0" location="./tools/php-cs-fixer" copy="false"/> | ||
<phar name="phpcs" version="^3.6.2" installed="3.6.2" location="./tools/phpcs" copy="false"/> | ||
<phar name="phpcbf" version="^3.6.2" installed="3.6.2" location="./tools/phpcbf" copy="false"/> | ||
<phar name="phpstan" version="^1.4.4" installed="1.4.4" location="./tools/phpstan" copy="false"/> | ||
<phar name="php-cs-fixer" version="^3.14.4" installed="3.14.4" location="./tools/php-cs-fixer" copy="false"/> | ||
<phar name="phpcs" version="^3.7.1" installed="3.7.1" location="./tools/phpcs" copy="false"/> | ||
<phar name="phpcbf" version="^3.7.1" installed="3.7.1" location="./tools/phpcbf" copy="false"/> | ||
<phar name="phpstan" version="^1.10.1" installed="1.10.1" location="./tools/phpstan" copy="false"/> | ||
<phar name="composer-normalize" version="^2.29.0" installed="2.29.0" location="./tools/composer-normalize" copy="false"/> | ||
</phive> |
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
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
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
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
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,25 +1,25 @@ | ||
{ | ||
"name": "phpcfdi/credentials", | ||
"description": "Library to use eFirma (fiel) and CSD (sellos) from SAT", | ||
"keywords": ["efirma", "fiel", "sat", "cfdi", "sello", "certificado"], | ||
"homepage": "https://github.com/phpcfdi/credentials", | ||
"license": "MIT", | ||
"keywords": [ | ||
"efirma", | ||
"fiel", | ||
"sat", | ||
"cfdi", | ||
"sello", | ||
"certificado" | ||
], | ||
"authors": [ | ||
{ | ||
"name": "Carlos C Soto", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"homepage": "https://github.com/phpcfdi/credentials", | ||
"support": { | ||
"source": "https://github.com/phpcfdi/credentials", | ||
"issues": "https://github.com/phpcfdi/credentials/issues" | ||
}, | ||
"prefer-stable": true, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": { | ||
"*": "dist" | ||
} | ||
"issues": "https://github.com/phpcfdi/credentials/issues", | ||
"source": "https://github.com/phpcfdi/credentials" | ||
}, | ||
"require": { | ||
"php": ">=7.3", | ||
|
@@ -31,6 +31,7 @@ | |
"ext-json": "*", | ||
"phpunit/phpunit": "^9.5" | ||
}, | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"PhpCfdi\\Credentials\\": "src/" | ||
|
@@ -41,30 +42,41 @@ | |
"PhpCfdi\\Credentials\\Tests\\": "tests/" | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": { | ||
"*": "dist" | ||
} | ||
}, | ||
"scripts": { | ||
"dev:build": ["@dev:fix-style", "@dev:test"], | ||
"dev:build": [ | ||
"@dev:fix-style", | ||
"@dev:check-style", | ||
"@dev:test" | ||
], | ||
"dev:check-style": [ | ||
"@php tools/composer-normalize normalize --dry-run", | ||
"@php tools/php-cs-fixer fix --dry-run --verbose", | ||
"@php tools/phpcs --colors -sp" | ||
], | ||
"dev:coverage": [ | ||
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --verbose --coverage-html build/coverage/html/" | ||
], | ||
"dev:fix-style": [ | ||
"@php tools/composer-normalize normalize", | ||
"@php tools/php-cs-fixer fix --verbose", | ||
"@php tools/phpcbf --colors -sp" | ||
], | ||
"dev:test": [ | ||
"@dev:check-style", | ||
"@php vendor/bin/phpunit --testdox --verbose --stop-on-failure", | ||
"@php tools/phpstan analyse --no-progress" | ||
], | ||
"dev:coverage": [ | ||
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --verbose --coverage-html build/coverage/html/" | ||
"@php tools/phpstan analyse --no-progress --verbose" | ||
] | ||
}, | ||
"scripts-descriptions": { | ||
"dev:build": "DEV: run dev:fix-style and dev:tests, run before pull request", | ||
"dev:check-style": "DEV: search for code style errors using php-cs-fixer and phpcs", | ||
"dev:fix-style": "DEV: fix code style errors using php-cs-fixer and phpcbf", | ||
"dev:test": "DEV: run dev:check-style, phpunit and phpstan", | ||
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/" | ||
"dev:build": "DEV: run dev:fix-style dev:check-style and dev:tests, run before pull request", | ||
"dev:check-style": "DEV: search for code style errors using composer-normalize, php-cs-fixer and phpcs", | ||
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/", | ||
"dev:fix-style": "DEV: fix code style errors using composer-normalize, php-cs-fixer and phpcbf", | ||
"dev:test": "DEV: run phpunit and phpstan" | ||
} | ||
} |
Oops, something went wrong.