-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.05 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
{
"name": "sourecode/screen-bundle",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"SoureCode\\Bundle\\Screen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SoureCode\\Bundle\\Screen\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "chapterjason",
"email": "jason@sourecode.dev"
}
],
"require": {
"ext-pcntl": "*",
"symfony/http-kernel": "^7.1",
"symfony/config": "^7.1",
"symfony/dependency-injection": "^7.1",
"symfony/filesystem": "^7.1",
"symfony/process": "^7.1",
"symfony/console": "^7.1"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^3.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^7.1",
"doctrine/doctrine-bundle": "^2.13",
"doctrine/orm": "^3.3",
"symfony/runtime": "^7.2"
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
}
}