-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
48 lines (48 loc) · 1.03 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
{
"name": "coursehero/assetic-bundle",
"homepage": "https://github.com/coursehero/assetic-bundle",
"description": "Course Hero's Assetic tools bundle",
"keywords": [
"assetic",
"source maps",
"cache busting",
"symfony"
],
"type": "symfony-bundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Connor Clark",
"email": "[email protected]"
},
{
"name": "Jason Wentworth",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/phpunit"
},
"require": {
"kriswallsmith/assetic": "~1.2|~1.4",
"php": ">=7.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^5.7",
"symfony/assetic-bundle": "2.8.2"
},
"autoload": {
"psr-4": {
"CourseHero\\AsseticBundle\\": "src/"
},
"files": ["src/Utils.php"]
},
"autoload-dev": {
"psr-4": {
"CourseHero\\AsseticBundle\\Tests\\": "tests/"
},
"files": ["src/Utils.php"]
}
}