-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "cutron01/authentication",
"description": "Manage users and authentication",
"type": "project",
"license": "Copyleft",
"autoload": {
"psr-4": {
"": "src/"
}
},
"authors": [
{
"name": "Jérôme Cutrona",
"email": "jerome.cutrona@univ-reims.fr"
}
],
"require": {
"ext-intl": "*",
"ext-pdo": "*",
"friendsofphp/php-cs-fixer": "^3.11",
"ext-fileinfo": "*"
},
"scripts": {
"start:linux" : [
"Composer\\Config::disableProcessTimeout",
"bin/run-server.sh"
],
"start:windows" : [
"Composer\\Config::disableProcessTimeout",
"bin/run-server.bat"
],
"start" : [
"@start:linux"
],
"fix:cs": [
"php-cs-fixer fix"
],
"test:cs" : [
"php-cs-fixer fix --dry-run"
],
"test" : [
"@test:cs"
]
},
"scripts-descriptions": {
"start" : "Run Web server on Linux",
"start:linux" : "Run Web server on Linux",
"start:windows" : "Run Web server on Windows",
"fix:cs": "Fix PHP code with PHP CS Fixer",
"test:cs" : "Test PHP code with PHP CS Fixer",
"test" : "Run all tests"
}
}