-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.39 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
{
"name": "owlcorp/doctrine-microseconds-datetime",
"description": "Adds support of microseconds time formats to Doctrine ORM & Doctrine DBAL",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^7.0|^8.0",
"doctrine/dbal": ">=v2.5.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"OwlCorp\\DoctrineMicrotime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OwlCorp\\DoctrineMicrotime\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml.dist",
"phpstan": "vendor/bin/phpstan -c phpstan.src.neon",
"check-code-quality": [
"@phpcs -s --extensions=php ./src",
"vendor/bin/phpstan analyse src -c phpstan.src.neon"
],
"fix-cs": [
"vendor/bin/phpcbf --standard=phpcs.xml.dist"
]
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-strict-rules": "^1.4",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.7"
}
}