-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.42 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
{
"name": "narkniro/uuid",
"type": "typo3-cms-extension",
"description": "",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Mark Houben",
"email": "[email protected]",
"role": "Maintainer"
}
],
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"helhum/typo3-console-plugin": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "uuid",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"ignore-as-root": false,
"web-dir": ".Build/public",
"app-dir": ".Build"
}
},
"require": {
"php" : "^8.0",
"typo3/cms-core": "^11.5",
"typo3/cms-backend": "^11.5",
"typo3/cms-install": "^11.5",
"symfony/uid": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"helhum/typo3-console": "^7.1",
"helmich/typo3-typoscript-lint": "^2.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.3",
"saschaegerer/phpstan-typo3": "^1.0",
"symfony/var-dumper": "^5.4",
"typo3/cms-extensionmanager": "^11.5",
"typo3/coding-standards": "^0.5",
"typo3/testing-framework": "^6.0"
},
"suggest": {
"kaystrobach/migrations": "Help this extension to identifier unique"
},
"autoload": {
"psr-4": {
"NarkNiro\\Uuid\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"NarkNiro\\Uuid\\Tests\\": "Tests"
}
},
"scripts": {
"prepare-extension-test-structure": [
"mkdir -p .Build/public/typo3conf/ext/",
"[ -L .Build/public/typo3conf/ext/uuid ] || ln -snvf ../../../../. .Build/public/typo3conf/ext/uuid",
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"cs:check": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi",
"analyze:php": "phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=.config/phpstan.neon",
"lint:typoscript": "typoscript-lint --ansi --config=./.config/typoscript-lint.yml",
"test:php": [
"@test:php:unit",
"@test:php:functional"
],
"test:php:unit": "phpunit --colors=always --configuration .config/phpunit-unit.xml",
"test:php:functional": "@test:php:unit --configuration .config/phpunit-functional.xml",
"post-autoload-dump": [
"@prepare-extension-test-structure"
]
}
}