forked from php-edifact/edifact-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 691 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "php-edifact/edifact-generator",
"description": "EDIFACT message generators",
"keywords": ["EDI", "EDIFACT", "message", "generator"],
"homepage": "https://github.com/php-edifact/edifact-generator",
"license": "LGPL-3.0-or-later",
"autoload": {
"psr-4": {
"EDI\\Generator\\": "src/Generator/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"codestyle:fix": "vendor/bin/php-cs-fixer fix",
"codestyle:lint": "vendor/bin/php-cs-fixer fix --dry-run"
},
"require-dev": {
"sabas/edifact": "^1.0",
"phpunit/phpunit": "~11.0",
"friendsofphp/php-cs-fixer": "^3.9.5"
}
}