This repository was archived by the owner on Apr 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.22 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.22 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
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
{
"name": "scssphp/scssphp2",
"type": "library",
"description": "scssphp2 is a compiler for SCSS written in PHP.",
"keywords": ["sass", "scss", "css", "cascading", "style", "sheet", "preprocessor", "less"],
"homepage": "http://scssphp.github.io/scssphp2/",
"license": [
"MIT"
],
"authors": [
{
"name": "Anthon Pang",
"email": "apang@softwaredevelopment.ca",
"homepage": "https://github.com/robocoder"
}
],
"autoload": {
"psr-4": {
"Sass\\": "src/Sass/",
"DartLang\\": "src/DartLang/",
"ScssPhp\\": "src/ScssPhp/"
}
},
"autoload-dev": {
"psr-4": {
"Sass\\Tests\\": "tests/Sass/",
"DartLang\\Tests\\": "tests/DartLang/",
"ScssPhp\\Tests\\": "tests/ScssPhp/"
}
},
"require": {
"php": ">=5.6.0",
"ext-json": "*",
"ext-ctype": "*",
"ext-mbstring": "*"
},
"require-dev": {
"sass/sass-spec": "2020.08.10",
"squizlabs/php_codesniffer": "~3.5",
"phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.3",
"twbs/bootstrap": "~4.3",
"zurb/foundation": "~6.5"
},
"repositories": [
{
"type": "package",
"package": {
"name": "sass/sass-spec",
"version": "2020.08.10",
"source": {
"type": "git",
"url": "https://github.com/sass/sass-spec.git",
"reference": "73222792c42a516d62e2e25c3f5d9e35f5567030"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sass/sass-spec/zipball/73222792c42a516d62e2e25c3f5d9e35f5567030",
"reference": "73222792c42a516d62e2e25c3f5d9e35f5567030",
"shasum": ""
}
}
}
],
"minimum-stability": "dev",
"bin": [
"bin/sass"
],
"archive": {
"exclude": [
"/Makefile",
"/.gitattributes",
"/.gitignore",
"/.travis.yml",
"/phpunit.xml.dist",
"/tests"
]
}
}