-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
56 lines (56 loc) · 1.53 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
{
"name": "tienvx/mbt-bundle",
"type": "symfony-bundle",
"description": "Core Library For SICOPE Model Project",
"keywords": ["model based testing", "testing tools"],
"license": "MIT",
"authors": [
{
"name": "Tien Xuan Vo",
"homepage": "https://tienvx.github.io/",
"role": "Maintainer & Developer"
},
{
"name": "Community contributions",
"homepage": "https://github.com/tienvx/mbt-bundle/contributors"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.6",
"doctrine/orm": "^2.8",
"jmgq/a-star": "^2.1",
"php-webdriver/webdriver": "^1.11",
"symfony/config": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/expression-language": "^6.1",
"symfony/http-client": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/messenger": "^6.1",
"symfony/validator": "^6.1",
"tienvx/single-color-petrinet": "^1.5",
"tienvx/assignments-evaluator-bundle": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Tienvx\\Bundle\\MbtBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tienvx\\Bundle\\MbtBundle\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}