-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.2 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "leafcutter/leafcutter",
"license": "MIT",
"authors": [
{
"name": "Joby Elliott",
"email": "jelliott@cs.unm.edu"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"byjoby/flatrr": "^1.3",
"erusev/parsedown-extra": "^0.8.1",
"twig/twig": "~2",
"scssphp/scssphp": "~1",
"imagine/imagine": "~1",
"chrisjean/php-ico": "~1",
"tedivm/stash": "0.14.*",
"symfony/yaml": "~5.0||~4.0",
"matthiasmullie/minify": "~1",
"monolog/monolog": "^2.0",
"composer-plugin-api": "^1.1|~2",
"symfony/filesystem": "~5.0||~4.0||~3.0||~2.1"
},
"autoload": {
"psr-4": {
"Leafcutter\\": "src"
}
},
"type": "composer-plugin",
"extra": {
"class": "Leafcutter\\Composer\\Plugin"
},
"scripts": {
"test": "./vendor/bin/atoum -d tests",
"test-win": "./vendor/bin/atoum.bat -d tests"
},
"require-dev": {
"atoum/atoum": "^3.4",
"atoum/stubs": "^2.6",
"atoum/visibility-extension": "^1.3",
"composer/composer": "^2.0"
}
}