forked from csrdelft/csrdelft.nl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.54 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.54 KB
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
{
"name": "csr/csrdelft.nl",
"authors": [
{
"name": "PubCie",
"email": "pubcie@csrdelft.nl"
}
],
"require": {
"smarty/smarty": "~3.1",
"google/apiclient": "^2.0",
"firebase/php-jwt": "^5.0",
"jacwright/restserver": "dev-master",
"globalcitizen/php-iban": "^2.6",
"robmorgan/phinx": "^0.10.0",
"csrdelft/orm": "1.8.1",
"maknz/slack": "^1.7",
"jakeasmith/http_build_url": "^1",
"ferno/loco": "dev-master",
"eftec/bladeone": "3.21",
"easyrdf/easyrdf": "^0.9.1",
"ml/json-ld": "^1.0",
"symfony/security-csrf": "^3.4",
"ext-exif": "*",
"ext-gd": "*",
"ext-mysqli": "*",
"ext-PDO": "*",
"ext-pdo_mysql": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-dom": "*",
"symfony/routing": "^3.4",
"symfony/http-foundation": "^3.4",
"php-di/invoker": "^2.0"
},
"config": {
"platform": {
"php": "7.0.33"
}
},
"include-path": ["lib/"],
"require-dev": {
"phpstan/phpstan": "^0.9.2",
"phpunit/phpunit": "^6.5"
},
"scripts": {
"phinx": "vendor/bin/phinx",
"migrate": "vendor/bin/phinx migrate",
"generator": "@php bin/dev/generate.php",
"production": "@php bin/ci/compile.php",
"flushcache": "@php bin/flushcache.php",
"onderhoud": "bin/prod/onderhoud.sh",
"analyse": "vendor/bin/phpstan --memory-limit=1000M analyse -l 4 -c phpstan.neon lib htdocs",
"test": "@php vendor/phpunit/phpunit/phpunit --bootstrap ./phpunit.init.php tests",
"update-prod": [
"@onderhoud true",
"git pull",
"@composer install --no-dev",
"@migrate",
"@onderhoud false",
"@flushcache"
]
}
}