-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.42 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
46
47
48
49
50
{
"name": "morebec/ydb",
"description": "YDB is a simple PHP utility library to use Yaml as a flat file database",
"type": "library",
"license": "MIT",
"repositories": [
{
"url": "https://github.com/Morebec/ValueObjects.git",
"type": "git"
}
],
"authors": [
{
"name": "jwillp",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.2"
}
},
"require": {
"php": "^7",
"beberlei/assert": "^3.2",
"katzgrau/klogger": "^1.0",
"morebec/value-objects": "dev-master",
"symfony/filesystem": "^4.3",
"symfony/lock": "^4.3",
"symfony/yaml": "^4.3"
},
"require-dev": {
"psy/psysh": "@stable",
"codeception/codeception": "^3.1",
"friendsofphp/php-cs-fixer": "^2.15"
},
"autoload": {
"psr-4": {
"Morebec\\YDB\\": "src/"
}
},
"scripts": {
"test": "php vendor/bin/codecept config:validate && php vendor/bin/codecept run --coverage-xml",
"test-no-performance": "php vendor/bin/codecept run --coverage-xml --skip-group performance",
"cs-lint": "php-cs-fixer fix src/ --diff -vvv --dry-run",
"cs-fix": "php-cs-fixer fix src/ -vvv || true",
"check-outdated": "composer outdated -m"
}
}