-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1020 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 1020 Bytes
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
{
"name": "navneetbhardwaj/akeneodynamicjobtab",
"type": "symfony-bundle",
"description": "Dynamic Job Tab Bundle: Seamlessly add custom tabs to any job with the Dynamic Job Tab Bundle. This versatile tool allows you to dynamically integrate a custom tab into your job listings. To configure the job name, simply update the configuration.yml file.",
"version": "1.0.0",
"license": "OSL-3.0",
"authors": [
{
"name": "Navneet Kumar",
"homepage": "https://www.navneetkumar.info"
}
],
"require": {
"akeneo/pim-community-dev": "^7.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.68",
"friendsofphp/php-cs-fixer": "^2.18"
},
"autoload": {
"psr-4": {
"DynamicJobTabBundle\\": "src/"
}
},
"scripts": {
"phpunit": [
"vendor/bin/phpunit --colors=always"
],
"test": [
"vendor/bin/php-cs-fixer fix --dry-run",
"@phpunit"
],
"cs:fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}