-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.68 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
57
58
59
60
{
"name": "ehdev/oro-basics-bundle",
"description": "Basic configuration, helper and tools for an oro application",
"homepage": "https://github.com/RocKordier/OroBasicsBundle",
"keywords": ["Oro Platform", "Symfony", "Basics"],
"license": "MIT",
"authors": [
{
"name": "[RocKordier] Eric Hertwig",
"homepage": "http://eric-hertwig.de"
}
],
"repositories": {
"oro": {
"type": "composer",
"url": "https://packagist.orocrm.com"
}
},
"autoload": {
"psr-4": {
"EHDev\\BasicsBundle\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"EHDev\\BasicsBundle\\": ["tests/"]
}
},
"require": {
"php": "^8.3",
"oro/platform": "^6.0.0",
"gedmo/doctrine-extensions": "^3.10",
"stof/doctrine-extensions-bundle": "^1.7",
"spatie/emoji": "^4.1",
"nikic/iter": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.39.1",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.18",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.3",
"composer/semver": "dev-main as 3.3.2"
},
"config" : {
"fxp-asset" : {
"enabled" : false
},
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}