-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 1.95 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "psfs/core",
"description": "Php Simple Fast & Secure",
"keywords": [
"php",
"framework",
"mvc",
"api",
"RESTful",
"twig"
],
"homepage": "https://github.com/psfs/core",
"require": {
"php": ">=8",
"ext-json": "*",
"ext-curl": "*",
"ext-gmp": "*",
"psfs/propel": "dev-master",
"symfony/console": "^7.4",
"symfony/finder": "^7.4",
"symfony/translation": "^7.4",
"twig/twig": "^3.24",
"monolog/monolog": "^3.10",
"matthiasmullie/minify": "^1.3",
"firebase/php-jwt": "^7.0",
"robmorgan/phinx": "^0.16"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"roave/security-advisories": "dev-master",
"symfony/process": "^7.4"
},
"config": {
"optimize-autoloader": true,
"discard-changes": true,
"apcu-autoloader": true
},
"license": "MIT",
"authors": [
{
"name": "Fran López",
"email": "fran.lopez@stratecode.coms"
}
],
"support": {
"email": "fran.lopez@stratecode.com",
"wiki": "https://github.com/psfs/core/wiki",
"issues": "https://github.com/psfs/core/issues"
},
"autoload": {
"files": [
"src/bootstrap.php"
],
"psr-4": {
"PSFS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PSFS\\tests\\": "tests",
"PSFS\\apitests\\": "tests_api/"
}
},
"bin": [
"src/bin/psfs"
],
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"post-autoload-dump": [
"@clearCache",
"@clearViewCache"
],
"coverage:top10": "php tests/coverage/check-top10-coverage.php cache/coverage.xml 85",
"clearCache": "[ -d ./cache/reflections ] && mv ./cache/reflections ./cache/.reflections_$(date +%Y%m%d%H%M%S) || echo 'Reflections folder does not exists.'",
"clearViewCache": "[ -d ./cache/twig ] && rm -rf ./cache/twig || echo 'Twig cache folder does not exists.'"
}
}