-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
45 lines (45 loc) · 1.49 KB
/
composer.json
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
{
"name": "estrato/edifact",
"type": "library",
"description": "Parser and Serializer for UN/EDIFACT messages",
"keywords": ["edi", "edifact", "parser", "serializer"],
"homepage": "https://github.com/estratocloud/edifact",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/estratocloud",
"role": "Developer"
}],
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"duncan3dc/object-intruder": "^0.3.0 || ^1.0",
"duncan3dc/php-ini": "^1.2",
"maglnet/composer-require-checker": "^2.0 || ^3.0 || ^4.0",
"mockery/mockery": "^1.4",
"nikic/php-parser": "^4.19",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.4",
"squizlabs/php_codesniffer": "^3.5.8",
"phpunit/phpunit": "^8.5.23"
},
"autoload": {
"psr-4": {"Estrato\\Edifact\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Estrato\\EdifactTests\\": "tests/"}
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/composer-require-checker",
"vendor/bin/phpstan analyse --level=max src",
"vendor/bin/phpstan analyse --level=max --configuration=phpstan-tests.neon tests",
"vendor/bin/phpcs --standard=phpcs.xml src tests",
"@composer validate --strict"
]
}
}