-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.5 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "eclipxe/sepomexphp",
"description": "Servicio Postal Mexicano PHP Library (Unofficial)",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"sepomex",
"mexico",
"códigos postales",
"código postal"
],
"homepage": "http://github/eclipxe13/sepomexphp",
"authors": [
{
"name": "Carlos C Soto",
"email": "eclipxe13@gmail.com"
}
],
"autoload": {
"psr-4": {
"Eclipxe\\SepomexPhp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Eclipxe\\SepomexPhp\\Tests\\": "tests"
}
},
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"ext-iconv": "*",
"ext-zip": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"guzzlehttp/guzzle": "^7.7",
"symfony/browser-kit": "^6.3|^7.1",
"symfony/http-client": "^6.3|^7.1",
"symfony/mime": "^6.3|^7.1"
},
"suggest": {
"guzzlehttp/guzzle": "Perform the download process using Guzzle",
"symfony/browser-kit": "Perform the download process using Symfony Browser Kit (recommended)"
},
"scripts": {
"dev:build": ["@dev:fix-style", "@dev:test"],
"dev:check-style": [
"@php tools/php-cs-fixer fix --dry-run --verbose",
"@php tools/phpcs --colors -sp"
],
"dev:fix-style": [
"@php tools/php-cs-fixer fix --verbose",
"@php tools/phpcbf --colors -sp"
],
"dev:test": [
"@dev:check-style",
"vendor/bin/phpunit --testdox --verbose --stop-on-failure",
"@php tools/phpstan analyse --no-progress --no-interaction"
],
"dev:coverage": [
"@php -dzend_extension=xdebug.so -dxdebug.mode=coverage vendor/bin/phpunit --testdox --coverage-html build/coverage/html/"
]
},
"scripts-descriptions": {
"dev:install": "DEV: install development tools into tools/",
"dev:build": "DEV: run dev:fix-style dev:tests and dev:docs, 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 phplint, dev:check-style, phpunit and phpstan",
"dev:coverage": "DEV: run phpunit with xdebug and storage coverage in build/coverage/html/"
}
}