-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"type": "yawik-module",
"name": "yawik/export-ba",
"description": "Dieses Modul exportiert Stellenanzeigen aus einer yawik installation an die 'Bundesagentur für Arbeit'. Benötigt wird ein Kooperationsvertrag mit der BA",
"license": "MIT",
"authors": [
{
"name": "Mathias Gelhausen",
"email": "gelhausen@cross-solution.de"
}
],
"support": {
"source": "https://github.com/yawik/export-ba"
},
"keywords": [
"yawik",
"module",
"laminas",
"ba",
"export"
],
"config": {
"platform": {
"ext-mongo": "1.6.16"
},
"process-timeout": 0,
"sort-packages": true,
"preferred-install": "dist"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=7.2",
"beberlei/assert": "^3.2",
"yawik/jobs": "^0.35"
},
"require-dev": {
"yawik/applications": "^0.35",
"yawik/auth": "^0.35",
"yawik/behat": "^0.35",
"yawik/composer-plugin": "^3.0",
"yawik/core": "^0.35",
"yawik/cv": "^0.35",
"yawik/geo": "^1.1",
"yawik/install": "^0.35",
"yawik/organizations": "^0.35",
"yawik/settings": "^0.35",
"phpunit/phpunit": "^8.0",
"cross-solution/phpunit-utils": "^2.0",
"squizlabs/php_codesniffer": "^3.5",
"slevomat/coding-standard": "^5.0"
},
"autoload": {
"psr-4": {
"ExportBA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ExportBATest\\": "test/src/"
}
},
"extra": {
"zf": {
"module": "ExportBA"
}
},
"scripts": {
"auto-scripts": [
"npm install",
"dir=$(pwd) && cd ${dir%%/test/sandbox} && node_modules/grunt/bin/grunt"
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"serve": "php -S localhost:8000 -t test/sandbox/public",
"start-selenium": "./vendor/bin/selenium-server-standalone -p 4444 -Dwebdriver.chrome.driver=./vendor/bin/chromedriver",
"test": "phpunit"
}
}