-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
65 lines (64 loc) · 2.3 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ray/aura-sql-module",
"keywords": [
"Ray module",
"Aura Sql",
"PDO"
],
"description": "aura/sql module for Ray.Di",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-pdo": "*",
"ray/di": "^2.13.1",
"ray/aop": "^2.10.4",
"aura/sql": "^4.0 || ^5.0",
"aura/sqlquery": "^2.7.1 || 3.x-dev",
"pagerfanta/pagerfanta": "^3.5",
"rize/uri-template": "^0.3.4",
"doctrine/annotations": "^1.11",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/polyfill-php81": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"bamarni/composer-bin-plugin": "^1.4",
"maglnet/composer-require-checker": "^3.0"
},
"autoload": {
"psr-4": {
"Ray\\AuraSqlModule\\": ["src/", "src-deprecated"]
},
"files": [
"src-files/uri_template.php"
]
},
"autoload-dev": {
"psr-4": {
"Ray\\AuraSqlModule\\": [
"tests/",
"tests/Fake/"
]
}
},
"scripts": {
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"],
"test": ["./vendor/bin/phpunit"],
"tests": ["@cs", "@test", "@sa"],
"coverage": ["php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage"],
"pcov": ["php -dextension=pcov.so -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-text --coverage-html=build/coverage --coverage-clover=coverage.xml"],
"cs": ["phpcs --standard=./phpcs.xml src tests"],
"cs-fix": ["./vendor/bin/phpcbf src tests"],
"clean": ["./vendor/bin/phpstan clear-result-cache", "./vendor/bin/psalm --clear-cache", "rm -rf tests/tmp/*.php"],
"sa": ["./vendor/bin/phpstan analyse -c phpstan.neon", "psalm --show-info=true"],
"metrics": ["./vendor/bin/phpmetrics --report-html=build/metrics --exclude=Exception --log-junit=build/junit.xml --junit=build/junit.xml src"],
"phpmd": ["./vendor/bin/phpmd src text ./phpmd.xml"],
"build": ["@cs", "@sa", "@pcov", "@metrics"]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}