-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.67 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "setono/dao-php-sdk",
"description": "A PHP SDK for the DAO API",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "joachim@loevgaard.dk"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"webmozart/assert": "^1.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"korbeil/phpstan-generic-rules": "^0.2.4",
"kriswallsmith/buzz": "^1.0",
"nyholm/psr7": "^1.1",
"phpspec/phpspec": "^5.1 || ^6.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.0",
"sylius-labs/coding-standard": "^3.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\DAO\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon -l max src",
"check-style": "vendor/bin/ecs check --ansi src/ tests/ spec/",
"fix-style": "vendor/bin/ecs check --fix --ansi src/ tests/ spec/",
"phpspec": "vendor/bin/phpspec run",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpspec",
"@phpunit"
]
}
}