-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
87 lines (87 loc) · 2.16 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "schliesser/sitecrawler",
"description": "TYPO3 sitemap crawler",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "André Buchmann",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-simplexml": "*",
"ext-zlib": "*",
"typo3/cms-core": "^12.4 || ^v13.0"
},
"require-dev": {
"donatj/mock-webserver": "^2.7",
"friendsofphp/php-cs-fixer": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"saschaegerer/phpstan-typo3": "dev-master",
"typo3/cms-composer-installers": "^5.0",
"typo3/testing-framework": "^8.0"
},
"autoload": {
"psr-4": {
"Schliesser\\Sitecrawler\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Schliesser\\Sitecrawler\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"scripts": {
"test": [
"@test-php-lint",
"@test-php-cs-fixer",
"@test-phpstan",
"@test-functional"
],
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Tests/"
],
"test-php-cs-fixer": [
"php-cs-fixer fix -v --dry-run --using-cache no --diff"
],
"test-php-cs-fixer-fix": [
"php-cs-fixer fix -v --using-cache no"
],
"test-functional": [
"[ -e .Build/bin/phpunit ] || composer update",
"TYPO3_PATH_WEB=$PWD/.Build typo3DatabaseDriver=pdo_sqlite typo3DatabaseName=test .Build/bin/phpunit -c Tests/FunctionalTests.xml Tests/Functional"
],
"test-phpstan": [
"phpstan analyse -c .phpstan.neon"
],
"prepare-release": [
"rm .gitignore",
"rm -rf .Build",
"rm -rf .github",
"rm -rf Tests",
"rm .editorconfig",
"rm .gitattributes",
"rm .php-cs-fixer.php"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "sitecrawler"
}
}
}