-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 943 Bytes
/
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": "ktomk/run-travis-yml",
"description": "script runner of travis.yml for bitbucket pipelines runner",
"homepage": "https://ktomk.github.io/pipelines/",
"minimum-stability": "stable",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Tom Klingenberg",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Ktomk\\Pipelines\\": "lib/ktomk/pipelines",
"Ktomk\\TravisYml\\": "lib/travis-yml"
}
},
"config": {
"autoloader-suffix": "RunTravisYml",
"platform-check": false,
"sort-packages": true,
"vendor-dir": "lib"
},
"require": {
"php": "^5.3.3 || ^7.0 || ^8.0",
"ktomk/symfony-yaml": "~2.6.13",
"patchwork/utf8": "~1.2"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"scripts": {
"pre-install-cmd": ["lib/script/install.sh"],
"post-install-cmd": ["@test"],
"test": ["test/shell.sh"]
}
}