This repository has been archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.83 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
{
"name": "phpsw/phpsw-ng",
"description": "PHP South West UK User Group Website",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "PHPSW",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"symfony/form": "^3.3",
"symfony/validator": "^3.2",
"doctrine/annotations": "^1.3",
"doctrine/cache": "^1.6",
"symfony/dependency-injection": "^3.2",
"symfony/yaml": "^3.2",
"symfony/config": "^3.2",
"symfony/console": "^3.2",
"twig/twig": "^2.2",
"symfony/filesystem": "^3.2",
"symfony/routing": "3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.10.0",
"sensiolabs/security-checker": "^5.0",
"phpunit/phpunit": "^6.0",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"autoload": {
"psr-4" : {
"Phpsw\\Website\\" : "app/src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Phpsw\\Website\\Tests\\" : "app/test/"
}
},
"scripts": {
"ci" : [
"@composer-validate",
"@lint",
"@cs",
"@test",
"@validate-data",
"@generate-website"
],
"composer-validate" : "@composer validate --no-check-all --strict",
"lint" : "parallel-lint app runner.php",
"cs" : "php-cs-fixer fix -v --dry-run --verbose --format=junit > reports/phpcs/junit.xml",
"cs-fix" : "php-cs-fixer fix -v",
"test" : "phpunit --log-junit reports/phpunit/junit.xml",
"validate-data" : "php runner.php phpsw:validate-data",
"generate-website" : "php runner.php phpsw:generate-website",
"security" : "security-checker security:check"
},
"abandoned": "phpsw/phpsw-symfony5"
}