-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.68 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "manuxi/sulu-app-settings-basic-bundle",
"description": "Say hello to Sulu app settings (basic)!",
"type": "symfony-bundle",
"keywords": [
"sulu",
"suluCms",
"app settings"
],
"homepage": "https://github.com/manuxi/SuluAppSettingsBasicBundle",
"license": "MIT",
"authors": [
{
"name": "Manuxi",
"email": "manu@bytefresser.de"
}
],
"require": {
"php": "^8.1",
"phpcr/phpcr-migrations-bundle": "^1.6",
"sulu/sulu": "^2.5",
"symfony/config": "^6.2 | ^7.0",
"symfony/dependency-injection": "^6.2 | ^7.0",
"symfony/framework-bundle": "^6.2 | ^7.0",
"symfony/http-foundation": "^6.2 | ^7.0",
"symfony/http-kernel": "^6.2 | ^7.0",
"symfony/intl": "^6.2 | ^7.0",
"symfony/translation": "^6.2 | ^7.0",
"symfony/security-core": "^6.2 | ^7.0"
},
"require-dev": {
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^6.2 | ^7.0",
"symfony/phpunit-bridge": "^6.2 | ^7.0",
"symfony/console": "^6.2 | ^7.0",
"phpspec/prophecy": "^1.17"
},
"autoload": {
"psr-4": {
"Manuxi\\SuluAppSettingsBasicBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Manuxi\\SuluAppSettingsBasicBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true
}
}
}