-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
39 lines (39 loc) · 1.02 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
{
"name": "prestashop/header-stamp",
"description": "Rewrite your file headers to add the license or to make them up-to-date",
"homepage": "https://github.com/PrestaShopCorp/header-stamp",
"license": "AFL-3.0",
"authors": [
{
"name": "PrestaShop SA",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0 || ^7.2",
"symfony/console": "^3.4 || ~4.0 || ~5.0 || ~6.0",
"symfony/finder": "^3.4 || ~4.0 || ~5.0 || ~6.0",
"nikic/php-parser": "^4.10"
},
"config": {
"preferred-install": "dist",
"prepend-autoloader": false,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"bin": [
"bin/header-stamp"
],
"autoload": {
"psr-4": {
"PrestaShop\\HeaderStamp\\": "src/"
}
},
"author": "PrestaShop",
"require-dev": {
"prestashop/php-dev-tools": "1.*",
"phpstan/phpstan": "^0.12.83"
}
}