forked from stellenmarkt/stellenmarkt.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.76 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
{
"type": "yawik-module",
"name": "stellenmarkt/stellenmarkt-com",
"description": "Creates a nice Yawik skin used at https://www.stellenmarkt.com/",
"license": "MIT",
"authors": [
{
"name": "Carsten Bleek",
"email": "[email protected]"
},
{
"name": "Mathias Gelhausen",
"email": "[email protected]"
}
],
"keywords": [
"yawik", "skin"
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"yawik/core": "^0.33",
"yawik/jobs": "^0.33",
"yawik/orders": "^0.3",
"yawik/jobs-by-mail": "^0.2",
"yawik/solr": "^0.8",
"yawik/organizations": "^0.33",
"yawik/pdf": "^0.33",
"yawik/composer-plugin": "^0.32@dev",
"yawik/landingpages": "^0.1.0",
"yawik/sitemap": "^0.3.0",
"yawik/export-ba": "dev-master",
"yawik/simple-import": "dev-store_meta_data"
},
"autoload": {
"psr-4": {
"Stellenmarkt\\": "src/"
}
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
}
},
"scripts": {
"auto-scripts": [
"npm install"
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"serve": "APPLICATION_ENV=development 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"
},
"extra": {
"branch-alias": {
"dev-develop": "0.32-dev"
},
"zf": {
"module": "Stellenmarkt"
}
}
}