-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.2 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
{
"name": "happyr/normal-distribution-bundle",
"type": "symfony-bundle",
"description": "A bundle to calculate normal distribution and other related stuff",
"keywords": ["Statistics", "normal distribution", "standard deviation", "bell curve"],
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"symfony/config": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.1"
},
"autoload": {
"psr-4": {
"Happyr\\NormalDistributionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Happyr\\NormalDistributionBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"nyholm/symfony-bundle-test": "^1.6",
"symfony/phpunit-bridge": "^4.4 || ^5.1",
"nyholm/nsa": "^1.1",
"doctrine/doctrine-bundle": "^1.12 || ^2.0.9",
"doctrine/orm": "^2.7"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}