Skip to content

Commit e60c41a

Browse files
committed
Asset class Query method PHP standards
1 parent 11b685d commit e60c41a

19 files changed

+1510
-800
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
.idea/
33
composer.phar
44
composer.lock
5-
composer.json
65
vendor/
76
test/report.html
87
test/AssetsTestReport.html

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2019 Contentstack (http://app.contentstack.com). All Rights Reserved
3+
Copyright (c) 2012-2020 Contentstack (http://app.contentstack.com). All Rights Reserved
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "contentstack/contentstack-php",
3+
"description": "Contentstack is a headless CMS with an API-first approach that puts content at the centre. It is designed to simplify the process of publication by separating code from content.",
4+
"type": "library",
5+
"license": "MIT",
6+
"keywords": [
7+
"Contentstack", "api"
8+
],
9+
"authors": [
10+
{
11+
"name": "Contentstack",
12+
"homepage": "https://www.contentstack.com/",
13+
"role": "Owner"
14+
},
15+
{
16+
"name": "Uttam K Ukkoji",
17+
"email": "uttamukkoji@gmail.com",
18+
"role": "Developer"
19+
}
20+
],
21+
"autoload": {
22+
"psr-4": {
23+
"Contentstack\\": "src/"
24+
},
25+
"files": ["src/Support/helper.php"]
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^9.0"
29+
},
30+
"require": {
31+
"php" : ">=5.5.0"
32+
}
33+
}

0 commit comments

Comments
 (0)