-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.87 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
61
62
63
{
"name": "ehdev/oro-festival-basics-bundle",
"description": "FestivalBasics Bundle for an Oro Application",
"homepage": "https://github.com/RocKordier/OroFestivalBasicsBundle",
"keywords": ["Oro Platform", "Symfony", "Basics", "Music", "Festival"],
"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\\FestivalBasicsBundle\\": ["src/", "tests/"]
}
},
"require": {
"php": "^8.3",
"oro/platform": "^6.0",
"oro/calendar-bundle": "^6.0",
"oro/crm-call-bundle": "^6.0",
"oro/crm-task-bundle": "^6.0",
"ehdev/oro-basics-bundle": "^6.0.x-dev"
},
"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" : {
"bin-dir": "bin",
"fxp-asset" : {
"enabled" : false
},
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"php-http/discovery": true,
"symfony/runtime": true
}
},
"scripts": {
"stan": "bin/phpstan analyze --memory-limit=512M -c phpstan.neon",
"fixer": "bin/php-cs-fixer fix --dry-run -v --diff --allow-risky=yes",
"ci": [
"@stan", "@fixer"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}