-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.27 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "maxbeckers/php-yaml-parser",
"description": "Parse YAML with PHP",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Max Beckers",
"email": "beckers.maximilian@gmail.com"
}
],
"require": {
"php": ">=8.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.89",
"yaml/yaml-test-suite": "*"
},
"autoload": {
"psr-4": {
"MaxBeckers\\YamlParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MaxBeckers\\YamlParser\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "yaml/yaml-test-suite",
"version": "2022.01.17",
"source": {
"type": "git",
"url": "https://github.com/yaml/yaml-test-suite.git",
"reference": "6ad3d2c62885d82fc349026c136ef560838fdf3d"
}
}
}
],
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --config=.php_cs.php -v --allow-risky=yes"
}
}